OFFSET
0,3
COMMENTS
FORMULA
In general, if M[k](z) is the g.f. of the 1-2-...-k trees with thinning limbs and C[k](z)=1+z*{C[k](z)}^k is the g.f. of the k-ary trees, then M[k](z)=M[k-1](z)*C[k](M[k-1]^(k-1)*z^k), M[1](z)=1/(1-z).
PROG
(PARI) {a(n)=local(k=5, M=1+x*O(x^n)); for(i=1, k, M=M*sum(j=0, n, binomial(i*j, j)/((i-1)*j+1)*(x^i*M^(i-1))^j)); polcoeff(M, n)} \\ Paul D. Hanna
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch and Louis Shapiro, Nov 06 2006
STATUS
approved