login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A053266 Coefficients of the '5th-order' mock theta function Phi(q). 17
0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 8, 8, 9, 10, 12, 12, 14, 15, 17, 18, 20, 21, 25, 26, 29, 31, 35, 36, 41, 43, 48, 51, 56, 59, 66, 70, 76, 81, 89, 94, 103, 109, 119, 126, 137, 144, 158, 167, 180, 191, 207, 218, 236, 250, 269, 285, 306, 323, 349, 368 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
In Ramanujan's lost notebook the generating function is denoted by phi(q) on pages 18 and 20, however on page 18 there is no minus one first term. - Michael Somos, Jul 07 2015
REFERENCES
G. E. Andrews and B. C. Berndt, Ramanujan's lost notebook, Part III, Springer, New York, 2012, MR2952081, See p. 12, Equation (2.1.18) and also page 26 equation (2.4.8).
Srinivasa Ramanujan, The Lost Notebook and Other Unpublished Papers, Narosa Publishing House, New Delhi, 1988, pp. 18, 20, 23.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000 (terms 0..1000 from G. C. Greubel)
George E. Andrews and Frank G. Garvan, Ramanujan's "lost" notebook VI: The mock theta conjectures, Advances in Mathematics, 73 (1989) 242-255.
Dean Hickerson, A proof of the mock theta conjectures, Inventiones Mathematicae, 94 (1988) 639-660.
FORMULA
G.f.: -1 + Sum_{k>=0} q^(5k^2)/((1-q)(1-q^4)(1-q^6)(1-q^9)...(1-q^(5k+1))).
3*a(n) = A053262(n) + A259910(n) unless n=0. - Michael Somos, Jul 07 2015
a(n) ~ sqrt(phi/2) * exp(Pi*sqrt(2*n/15)) / (5^(3/4) * sqrt(n)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Jun 12 2019
EXAMPLE
G.f. = x + x^2 + x^3 + x^4 + 2*x^5 + 2*x^6 + 2*x^7 + 2*x^8 + 3*x^9 + ...
MATHEMATICA
a[ n_] := If[ n < 0, 0, With[ {m = Sqrt[1 + 24 n/5]}, SeriesCoefficient[ -1 + Sum[ (-1)^k x^(5 k (3 k + 1)/2) / (1 - x^(5 k + 1)), {k, Quotient[m + 1, -6], Quotient[m - 1, 6]}] / QPochhammer[ x^5], {x, 0, n}]]]; (* Michael Somos, Jul 07 2015 *)
PROG
(PARI) {a(n) = if( n<0, 0, polcoeff( sum(k=0, sqrtint(n\5), x^(5*k^2) / prod(i=1, 5*k+1, 1 - if( i%5==1 || i%5==4, x^i), 1 + x * O(x^(n - 5*k^2)))) - 1, n))}; /* Michael Somos, Jul 07 2015 */
(PARI) {a(n) = my(A, m); if( n<0, 0, m = sqrtint(1 + 24*n\5); A = x * O(x^n); polcoeff( sum(k=(m + 1)\-6, (m - 1)\6, (-1)^k * x^(5*k*(3*k + 1)/2) / (1 - x^(5*k + 1)), A) / eta(x^5 + A) - 1, n))}; /* Michael Somos, Jul 07 2015 */
CROSSREFS
Other '5th-order' mock theta functions are at A053256, A053257, A053258, A053259, A053260, A053261, A053262, A053263, A053264, A053265, A053267.
Cf. A259910.
Sequence in context: A068980 A280950 A279135 * A112217 A172033 A214131
KEYWORD
nonn,easy
AUTHOR
Dean Hickerson, Dec 19 1999
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)