OFFSET
0,3
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 66*x^4/4! + 650*x^5/5! +...
where
A(x) = 1 + log(1+x*A(x)) + log(1+x*A(x))*log(1+x*A(x)^2)/2! + log(1+x*A(x))*log(1+x*A(x)^2)*log(1+x*A(x)^3)/3! + log(1+x*A(x))*log(1+x*A(x)^2)*log(1+x*A(x)^3)*log(1+x*A(x)^4)/4! +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, prod(k=1, m, log(1+x*A^k+x*O(x^n)))/m!)); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 09 2013
STATUS
approved