OFFSET
0,2
COMMENTS
Compare to g.f. of partition numbers: exp( Sum_{n>=1} sigma(n)*x^n/n ), where sigma(n) = A000203(n) is the sum of the divisors of n.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 26*x^2 + 732*x^3 + 116390*x^4 + 40513052*x^5 +...
log(A(x)) = 2*x + 2^4*3*x^2/2 + 2^9*4*x^3/3 + 2^16*7*x^4/4 + 2^25*6*x^5/5 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, 2^(m^2)*sigma(m)*x^m/m)+x*O(x^n)), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 06 2009
STATUS
approved