OFFSET
-1,2
REFERENCES
B. C. Berndt, Ramanujan's Notebooks Part IV, Springer-Verlag, see p. 176 Entry 32(iii).
LINKS
G. C. Greubel, Table of n, a(n) for n = -1..1000
FORMULA
Expansion of (eta(q)/eta(q^7))^4 + 13 + 49*(eta(q^7)/eta(q))^4 in powers of q.
G.f. is a period 1 Fourier series which satisfies f(-1 / (9 t)) = f(t) where q = exp(2 Pi i t).
Convolution cube of A058576.
a(n) ~ exp(4*Pi*sqrt(n/7)) / (sqrt(2)*7^(1/4)*n^(3/4)). - Vaclav Kotesovec, Feb 26 2017
EXAMPLE
G.f. = 1/q + 9 + 51*q + 204*q^2 + 681*q^3 + 1956*q^4 + 5135*q^5 + 12360*q^6 + ...
MATHEMATICA
a[ n_] := With[ {A = q (QPochhammer[ q^7] / QPochhammer[ q])^4}, SeriesCoefficient[ 1/A + 13 + 49 A, {q, 0, n}]];
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); A = (eta(x^7 + A) / eta(x + A))^4; polcoeff( 1/A + 13*x + 49*x^2 * A, n))};
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Feb 23 2017
STATUS
approved