OFFSET
-1,9
COMMENTS
Also McKay-Thompson series of class 92B for Monster. - Michel Marcus, Feb 19 2014
LINKS
G. C. Greubel, Table of n, a(n) for n = -1..1000
D. Ford, J. McKay and S. P. Norton, More on replicable functions, Commun. Algebra 22, No. 13, 5175-5193 (1994).
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of -1 + 1/q * chi(q) * chi(q^23) in powers of q where chi() is a Ramanujan theta function. - Michael Somos, Aug 11 2015
Expansion of -1 + (eta(q^2) * eta(q^46))^2 / (eta(q) * eta(q^4) * eta(q^23) * eta(q^92)) in powers of q. - Michael Somos, Aug 11 2015
G.f.: -1 + 1/x * Product_{k>0} (1 + x^(2*k - 1)) * (1 + x^(46*k - 23)). - Michael Somos, Aug 11 2015
a(n) ~ exp(2*Pi*sqrt(n/23)) / (2 * 23^(1/4) * n^(3/4)). - Vaclav Kotesovec, Sep 06 2015
EXAMPLE
T92A = 1/q + q^2 + q^3 + q^4 + q^5 + q^6 + 2*q^7 + 2*q^8 + 2*q^9 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ -1 + 1/q QPochhammer[ -q, q^2] QPochhammer[ -q^23, q^46], {q, 0, n}]; (* Michael Somos, Aug 11 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); polcoeff( -x + (eta(x^2 + A) * eta(x^46 + A))^2 / (eta(x + A) * eta(x^4 + A) * eta(x^23 + A) * eta(x^92 + A)), n))}; /* Michael Somos, Aug 11 2015 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael Somos, Aug 28 2005
STATUS
approved