OFFSET
0,4
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 2*x^3 + 4*x^4 + 9*x^5 + 20*x^6 + 48*x^7 +...
where
A(x) = exp(x + x^2/2 + 4*x^3/3 + 9*x^4/4 + 26*x^5/5 + 64*x^6/6 + 183*x^7/7 + 465*x^8/8 + 1282*x^9/9 + 3406*x^10/10 +...+ A226908(n)*x^n/n +...)
such that
A(x) = 1 + x*exp(x*A(x) + x^2*A(x^2)/2 + 4*x^3*A(x^3)/3 + 9*x^4*A(x^4)/4 + 26*x^5*A(x^5)/5 + 64*x^6*A(x^6)/6 + 183*x^7*A(x^7)/7 + 465*x^8*A(x^8)/8 + 1282*x^9*A(x^9)/9 + 3406*x^10*A(x^10)/10 +...+ A226908(n)*x^n*A(x^n)/n +...)
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*exp(sum(m=1, n, polcoeff(log(A+x*O(x^m)), m)*subst(A, x, x^m)*x^m)+x*O(x^n))); polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 21 2013
STATUS
approved