OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 11*x^3 + 46*x^4 + 205*x^5 + 962*x^6 +...
where
log(A(x)) = A(x)*A(x)*x + A(x)^2*A(x^2)*x^2/2 + A(x)^3*A(x^3)*x^3/3 +...
more explicitly,
log(A(x)) = x + 5*x^2/2 + 25*x^3/3 + 133*x^4/4 + 716*x^5/5 + 3947*x^6/6 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(sum(m=1, n, subst(A, x, x^m+x*O(x^n))*(x*A+x*O(x^n))^m/m))); polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 26 2011
STATUS
approved