OFFSET
0,2
COMMENTS
Limit a(n+1)/a(n) = 29.8937006274429170027521943552718162106155192278570861849...
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..300
EXAMPLE
G.f.: A(x) = 1 + 10*x + 200*x^2 + 4635*x^3 + 115400*x^4 + 2989000*x^5 + 79413182*x^6 + 2147670780*x^7 + 58847999800*x^8 + 1628799414030*x^9 + ...
such that
1/A(x)^3 = 1 - 30*x + 95*x^3 - 196*x^6 + 333*x^10 - 506*x^15 + 715*x^21 - 960*x^28 + 1241*x^36 - 1558*x^45 + 1911*x^55 - 2300*x^66 + ... + (-1)^n * (2*n+1)*(9*n+1) * x^(n*(n+1)/2) + ...
Note that the nonzero coefficients of 1/A(x)^3 can be generated by
(1 - 27*x + 8*x^2)/(1 + x)^3 = 1 - 30*x + 95*x^2 - 196*x^3 + 333*x^4 + ...
RELATED SERIES.
The cube of the g.f. A(x) equals the g.f. of A320670:
A(x)^3 = 1 + 30*x + 900*x^2 + 26905*x^3 + 804300*x^4 + 24043500*x^5 + 718749221*x^6 + 21486074010*x^7 + 642298264200*x^8 + 19200672023385*x^9 + ... + A320670(n)*x^n + ...
PROG
(PARI) {a(n) = my(A = 1/sum(m=0, sqrtint(2*n+1), (-1)^m * (2*m+1)*(9*m+1) * x^(m*(m+1)/2) +x*O(x^n))^(1/3)); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 18 2018
STATUS
approved