OFFSET
1,2
EXAMPLE
L.g.f.: L(x) = x + 5*x^2/2 + 28*x^3/3 + 181*x^4/4 + 1271*x^5/5 +...
G(x) = x*exp(L(x)) = x + x^2 + 3*x^3 + 12*x^4 + 59*x^5 + 331*x^6 + 2062*x^7 + 13945*x^8 + 100981*x^9 +...+ A179325(n)*x^n +...
L(x) = Log(G(x)/x) = G(G(x)) + G(G(x)^2)/2 + G(G(x)^3)/3 + G(G(x)^4)/4 +...
PROG
(PARI) {a(n)=local(A=x); for(i=1, n+1, A=x*exp(sum(m=1, n, subst(A, x, (subst(A^m, x, x+x*O(x^n))))/m))); n*polcoeff(log(A/x), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 17 2010
STATUS
approved