OFFSET
0,2
COMMENTS
Conjecture: given q and m are nonnegative integers, then
exp( Sum_{n>=1} q^(n^m)*x^n/n )
is a power series in x with integer coefficients.
EXAMPLE
G.f.: A(x) = 1 + 2*x + 130*x^2 + 44739500*x^3 +...
log(A(x)) = 2*x + 2^8*x^2/2 + 2^27*x^3/3 + 2^64*x^4/4 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n+1, 2^(m^3)*x^m/m)+x*O(x^n)), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 19 2009
STATUS
approved