OFFSET
-1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = -1..2500
FORMULA
G.f. is a period 1 Fourier series which satisfies f(-1 / (6 t)) = f(t) where q = exp(2 Pi i t).
Convolution square of A058490.
a(n) ~ exp(2*Pi*sqrt(2*n/3)) / (2^(3/4) * 3^(1/4) * n^(3/4)). - Vaclav Kotesovec, Sep 07 2017
Expansion of A/q - 2 + q/A, where A = (eta(q^2)*eta(q^3)/(eta(q)*eta(q^6) ))^12, in powers of q. - G. C. Greubel, Jun 20 2018
EXAMPLE
G.f. = x^-1 + 10 + 79*x + 352*x^2 + 1431*x^3 + 4160*x^4 + 13015*x^5 + ...
MATHEMATICA
a[ n_] := With[{A = (QPochhammer[ x^2] QPochhammer[ x^3] / (QPochhammer[ x] QPochhammer[ x^6]))^12}, SeriesCoefficient[ A/x - 2 + x/A, {x, 0, n}]];
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); A = (eta(x^2 + A) * eta(x^3 + A) / (eta(x + A) * eta(x^6 + A)))^12; polcoeff( A - 2*x + x^2/A, n))};
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); A = (eta(x + A) * eta(x^2 + A) / (eta(x^3 + A) * eta(x^6 + A)))^4; polcoeff( A + 14*x + 81*x^2/A, n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Jun 12 2017
STATUS
approved
