OFFSET
0,4
COMMENTS
The rank of a partition is its largest part minus the number of parts.
REFERENCES
Srinivasa Ramanujan, Collected Papers, Chelsea, New York, 1962, pp. 354-355.
Srinivasa Ramanujan, The Lost Notebook and Other Unpublished Papers, Narosa Publishing House, New Delhi, 1988, pp. 20, 23, 25.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000 (corrected and extended previous b-file from G. C. Greubel)
George E. Andrews, The fifth and seventh order mock theta functions, Trans. Amer. Math. Soc., 293 (1986) 113-134.
George E. Andrews and Frank G. Garvan, Ramanujan's "lost" notebook VI: The mock theta conjectures, Advances in Mathematics, 73 (1989) 242-255.
George N. Watson, The mock theta functions (2), Proc. London Math. Soc., series 2, 42 (1937) 274-304.
FORMULA
G.f.: chi_0(q) = Sum_{n>=0} q^n/((1-q^(n+1))(1-q^(n+2))...(1-q^(2n))).
G.f.: chi_0(q) = 1 + Sum_{n>=0} q^(2n+1)/((1-q^(n+1))(1-q^(n+2))...(1-q^(2n+1))).
a(n) is the number of partitions of 5n with rank == 1 (mod 5) minus number with rank == 0 (mod 5).
a(n) is the number of partitions of n with unique smallest part and all other parts <= twice the smallest part.
a(n) is the number of partitions where the largest part is odd and all other parts are greater than half of the largest part. - N. Sato, Jan 21 2010
a(n) ~ exp(Pi*sqrt(2*n/15)) / sqrt((5 + sqrt(5))*n). - Vaclav Kotesovec, Jun 12 2019
MATHEMATICA
1+Series[Sum[q^(2n+1)/Product[1-q^k, {k, n+1, 2n+1}], {n, 0, 49}], {q, 0, 100}]
nmax = 100; CoefficientList[Series[1 + Sum[x^(2*k+1)/Product[1-x^j, {j, k+1, 2*k+1}], {k, 0, Floor[nmax/2]}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Jun 12 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Dean Hickerson, Dec 19 1999
STATUS
approved