OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 5*x^3 + 20*x^4 + 182*x^5 + 6552*x^6 +...
Let L(x) = g.f. of A158873 where exp(L(x)) = A(x), then:
L(x) = x + 3*x^2/2 + 10*x^3/3 + 59*x^4/4 + 796*x^5/5 + 38106*x^6/6 +...
L(x) = (1+x)*x + (1+3*x)^2*x^2/2 + (1+10*x)^3*x^3/3 + (1+59*x)^4*x^4/4 +...
PROG
(PARI) {a(n)=local(A=1+x); if(n==0, 1, for(i=0, n, A=exp(sum(m=1, n, (1+m*polcoeff(log(A+x*O(x^m)), m)*x+x*O(x^n))^m*x^m/m))); polcoeff(A, n))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 10 2009
STATUS
approved