OFFSET
0,2
COMMENTS
Here sigma(n) = A000203(n) is the sum of divisors of n. Compare g.f. to the formula for Jacobi theta_4(x) given by:
_ theta_4(x) = exp( Sum_{n>=1} (sigma(n)-sigma(2*n))*x^n/n )
where theta_4(x) = 1 + Sum_{n>=1} 2*(-x)^(n^2).
EXAMPLE
G.f.: A(x) = 1 + 8*x + 64*x^2 + 512*x^3 + 3200*x^4 + 19392*x^5 +...
log(A(x)) = 2^3*x + 4^3*x^2/2 + 8^3*x^3/3 + 8^3*x^4/4 + 12^3*x^5/5 + 16^3*x^6/6 + 16^3*x^7/7 + 16^3*x^8/8 + 26^3*x^9/9 +...+ A054785(n)^3*x^n/n +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, (sigma(2*m)-sigma(m))^3*x^m/m)+x*O(x^n)), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 30 2011
STATUS
approved