OFFSET
0,2
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..5000 (terms 0..1000 from T. D. Noe)
L. A. Dragonette, Some Asymptotic Formulae for the Mock Theta Series of Ramanujan, Trans. Amer. Math. Soc., 72 (1952), 474-500.
Eric Weisstein's World of Mathematics, Mock Theta Function
FORMULA
a(n) ~ -exp(Pi*sqrt(n/3)) / (2*sqrt(2*n)). - Vaclav Kotesovec, Jun 12 2019
MATHEMATICA
f[q_, s_] := Sum[q^(n^2)/Product[1+q^k, {k, n}]^2, {n, 0, s}]; Take[CoefficientList[Series[f[q, 100], {q, 0, 100}], q], {1, -1, 2}]
PROG
(PARI) a(n)=if(n<0, 0, polcoeff(1+sum(k=1, sqrtint(2*n), x^k^2/prod(i=1, k, 1+x^i, 1+O(x^(2*n)))^2), 2*n))
CROSSREFS
KEYWORD
sign
AUTHOR
EXTENSIONS
More terms from Eric W. Weisstein
STATUS
approved