OFFSET
0,3
COMMENTS
Compare the definition to: exp( Sum_{n>=1} (1+y)^(n^3) * x^n/n ), which yields an integer series whenever y is an integer (e.g., A158110).
Note: exp( Sum_{n>=1} (1+x)^(n^3) * x^n/n ) does not yield an integer series.
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 37*x^3 + 1562313*x^4 + 122131737394518*x^5 + ...
such that the logarithm equals
log(A(x)) = (1+x)*x + (1 + 70*x + x^2)*x^2/2
+ (1 + 4686825*x + 4686825*x^2 + x^3)*x^3/3
+ (1 + 488526937079580*x + 1832624140942590534*x^2 + 488526937079580*x^3 + x^4)*x^/4 + ...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, sum(k=0, m, binomial(m^3, m^2*k)*x^k)*x^m/m)+x*O(x^n)), n)}
for(n=0, 15, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 24 2013
STATUS
approved