In a problem I'm working on, the following two-index sequence keeps popping up:
$a(1,m) = 1$ for all $m$.
$a(n,m) = 1$ if $n = m$.
$a(n,m) = n(a(n,m-1) + a(n-1,m-1))$, $1 < n < m$.
And if $n > m$, $a(n,m)$ is not needed to be defined.
The sequence is almost like a messed-up Pascal's triangle. I would like to have a closed form relation for this sequence. I've tried messing around with 2D generating functions, but the results become messy very quickly.
Any help or hints would be appreciated!
EDIT: If anyone is interested in the math problem I'm working on, I am interested in finding a closed form of the sum $$\sum_{n=0}^{\infty}{n^pr^n},$$ For all $p\in\mathbb{N}$ and with $|r|<1$. So far, I've proven that the following relation holds: $$\sum_{n=0}^{\infty}{n^pr^n}=\frac{1}{(1-r)^{p+1}}\sum_{k=1}^{p}{a(k,p)(1-r)^{p-k}},$$ Where $a(k,p)$ is the sequence in question. Thus, you can see why finding a closed form for this sequence could be of some interest. Perhaps knowledge of the problem can help solve the enigma.
(NOTE: I'm a high school senior, so if there is already a closed-form for this sum that I just haven't seen due to lack of exposure, I'd love to see it!)