Stirling numbers of the second kind: How to obtain a recurrence relation from a generating function?

$$\frac d{dt}\frac1{k!}(e^t-1)^k=\frac1{(k-1)!}(e^t-1)^{k-1}e^t=k(\frac1{k!}(e^t-1)^k)+\frac1{(k-1)!}(e^t-1)^{k-1}$$ Can you derive it from this?


I realize that this is a little late to help the original author, but for someone else who finds this post and doesn't like to work with seemingly adhoc derivative formulas on the sequence generating function, I think there are a couple of better approaches you could try.

RE: References I'd also like to point out that the treatment of the Stirling numbers of both kinds found in Concrete Mathematics is better and a little more modern that Comtet's book (which is still good). There's also another good publication that you can get access to if you have a university subscription by Mansour called Commutation Relations, Normal Ordering, and Stirling Numbers. It's too pricey for me to recommend if you can't get free access to it, but it does nonetheless have a pretty thorough treatment of Stirling number identities.

Approaches via symmetric polynomials This especially applies to the Stirling numbers of the first kind which can be generated exactly by elementary symmetric polynomials of the form $$|s(n,k)| = [x^k] x \cdot \prod_{i=1}^{n} (1+x/i).$$ These coefficients then inherit a plethora of immediate identities from this structure as given in Macdonald's book on symmetric functions. This form should also make finding a triangular recurrence relation for this Stirling number variant very, very easy. You can read more about generalizations in this recent article for reference.

Now onto the Stirling numbers of the second kind. An ordinary generating function for this triangle is given (for example, in Section 7.4 of Concrete Mathematica) as $$\sum_{n \geq 0} S(n, k) z^n = \frac{z^k}{(1-z)(1-2z)\cdots(1-kz)}.$$ Notice here that in this case the sequence is enumerated exactly in terms of expansions of the incomplete homeogeneous symmetric polynomials (see Wikipedia's reference on these). I would have to imagine that this should help you to get a more combinatorially motivated proof of the triangular recurrence relation you stated above.

Other summation identities In either case, you should get exact summation formulas for these triangles in one of the two following forms: $$\sum_{m=1}^{n} \binom{n}{m} (-1)^{n-m} / m^{k},$$ or in the second kind case as, $$\left\{ {n \atop k}\right\} = \frac{1}{k!}\sum_{j=0}^{k} (-1)^{k-j} \binom{k}{j} j^n.$$ These sums should also suggest recurrence relations directly without needing to perform operations on their corresponding generating functions.

Hope that helps someone.