OFFSET
0,2
EXAMPLE
G.f.: A(x) = 1 + 2*x + 9*x^2 + 53*x^3 + 357*x^4 + 2611*x^5 + 20180*x^6 +...
where the g.f. satisfies:
log(A(x)) = (1 + A(x))*x + (1 + 8*A(x) + A(x)^2)*x^2/2 + (1 + 27*A(x) + 27*A(x)^2 + A(x)^3)*x^3/3 + (1 + 64*A(x) + 216*A(x)^2 + 64*A(x)^3 + A(x)^4)*x^4/4 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, sum(j=0, m, binomial(m, j)^3*(A+x*O(x^n))^j)*x^m/m))); polcoeff(A, n, x)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 24 2011
STATUS
approved