I have written an algorithm for rectangle packing where I have the following recurrence relation for the running time: $$ T(x,y,z)=\begin{cases} O(1)&\text{, if x = 0}\\ \sum^{z-1}_{i=0}\bigl(x\cdot T(x-1,y+1,z+1-i)\bigr)+x\cdot y\cdot z&\text{, if x > 0}\\ \end{cases} $$
You however always start with $T(n, 0, 1)$ for an input of size $n$.
I am now trying to get an asymptotic running time in terms of $n$. I tried just filling in the recurrence until you see a pattern but I could not find a pattern.