OFFSET
0,3
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.
Euler transform of A160889. - Vaclav Kotesovec, Nov 01 2024
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..5000
FORMULA
a(n) = (1/n)*Sum_{k=1..n} sigma(k^3) * a(n-k) for n>0, with a(0)=1.
log(a(n)) ~ 4*Pi*c^(1/4)*n^(3/4) / (3^(5/4)*5^(1/4)), where c = A330595 = Product_{primes p} (1 + 1/p^2 + 1/p^3) = 1.74893299784324530303390699... - Vaclav Kotesovec, Nov 01 2024
EXAMPLE
G.f.: A(x) = 1 + x + 8*x^2 + 21*x^3 + 77*x^4 + 199*x^5 + 661*x^6 +...
log(A(x)) = x + 15*x^2/2 + 40*x^3/3 + 127*x^4/4 + 156*x^5/5 + 600*x^6/6 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sigma(m^3)*x^m/m)+x*O(x^n)), n)}
(PARI) {a(n)=if(n==0, 1, (1/n)*sum(k=1, n, sigma(k^3)*a(n-k)))}
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
Paul D. Hanna, Feb 08 2009
STATUS
approved