OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 5*x^3 + 15*x^4 + 45*x^5 + 147*x^6 +...
such that, by definition,
A(x) = 1 + x*A(x) + x^2*A(x)^2*A(x^2) + x^3*A(x)^3*A(x^3) + x^4*A(x)^4*A(x^2)^2*A(x^4) + x^5*A(x)^5*A(x^5) + x^6*A(x)^6*A(x^2)^3*A(x^3)^2*A(x^6) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, x^m*exp(sumdiv(m, d, (m/d)*subst(log(A), x, x^d +x*O(x^n)))))); polcoeff(A, n)}
for(n=0, 35, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 06 2012
STATUS
approved