OFFSET
1,3
COMMENTS
EXAMPLE
G.f.: A(x) = x + x^2 + 3*x^3 + 7*x^4 + 22*x^5 + 53*x^6 + 189*x^7 + 485*x^8 + ...
where
A(x) = x*exp(A(x) + A(3*x^2)/2 + A(4*x^3)/3 + A(7*x^4)/4 + A(6*x^5)/5 + A(12*x^6)/6 + A(8*x^7)/7 + A(15*x^8)/8 + A(13*x^9)/9 + A(18*x^10)/10 + ...).
PROG
(PARI) {a(n)=local(A=x); for(i=1, n, A=x*exp(sum(k=1, n, subst(A, x, sigma(k)*x^k +x*O(x^n))/k))); polcoeff(A, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 02 2013
STATUS
approved