OFFSET
0,2
COMMENTS
Given g.f. A(x), note that A(x)^(1/3) is not an integer series.
EXAMPLE
G.f.: A(x) = 1 + 3*x + 12*x^2 + 198*x^3 + 16962*x^4 + 6762210*x^5 +...
such that
log(A(x))/3 = x + 5*x^2/2 + 171*x^3/3 + 21845*x^4/4 + 11184811*x^5/5 + 22906492245*x^6/6 + 187649984473771*x^7/7 +...+ Jacobsthal(n^2)*x^n/n +...
Jacobsthal numbers begin:
A001045 = [1,1,3,5,11,21,43,85,171,341,683,1365,2731,5461,10923,21845,...].
PROG
(PARI) {Jacobsthal(n)=polcoeff(x/(1-x-2*x^2+x*O(x^n)), n)}
{a(n)=polcoeff(exp(sum(k=1, n, 3*Jacobsthal(k^2)*x^k/k)+x*O(x^n)), n)}
for(n=0, 16, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 24 2012
STATUS
approved