OFFSET
-1,3
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Seiichi Manyama, Table of n, a(n) for n = -1..10000
J. H. Conway and S. P. Norton, Monstrous Moonshine, Bull. Lond. Math. Soc. 11 (1979) 308-339.
D. Ford, J. McKay and S. P. Norton, More on replicable functions, Commun. Algebra 22, No. 13, 5175-5193 (1994).
J. McKay and H. Strauss, The q-series of monstrous moonshine and the decomposition of the head characters, Comm. Algebra 18 (1990), no. 1, 253-278.
FORMULA
Expansion of (eta(q) / eta(q^5))^6 + 6 + 125 * (eta(q^5) / eta(q))^6 in powers of q. - Michael Somos, Jul 05 2014
a(n) ~ exp(4*Pi*sqrt(n/5)) / (sqrt(2)*5^(1/4)*n^(3/4)). - Vaclav Kotesovec, Dec 04 2015
EXAMPLE
T5A = 1/q + 134*q + 760*q^2 + 3345*q^3 + 12256*q^4 + 39350*q^5 + ...
MATHEMATICA
a[ n_] := With[ {A = (QPochhammer[ q] / QPochhammer[ q^5])^6 / q}, SeriesCoefficient[ A + 6 + 125 / A, {q, 0, n}]]; (* Michael Somos, Jul 05 2014 *)
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); A = (eta(x + A) / eta(x^5 + A))^6; polcoeff( A + 6*x + x^2 * 125 / A, n))}; /* Michael Somos, Jul 05 2014 */
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved