What is the technique of computing the following recurrence?
$$P(n) = n + nP(n-1)$$
(We assume $P(1) = 1$.)
It is obvious that the lower bound for $P(n)$ is $n!$, and the upper bound is $(n+1)!$, which is pretty good information already. I've been wondering, however, if it's possible to improve those bounds or solve the recurrence exactly.