OFFSET
0,2
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000
Mathew Rogers, Identities for the Ramanujan zeta function, arXiv:1210.1942 [math.NT], 2012-2013. See page 3 Lemma 1.
FORMULA
Expansion of (F(q) - F(-q)) / 2 = F(q) + 24*F(q^2) + 2048*F(q^4) in powers of q^2 where F() is the g.f. of A000594. - Michael Somos, Apr 17 2015
a(n) = A000594(2*n + 1). - Michael Somos, Apr 17 2015
EXAMPLE
G.f. = 1 + 252*x + 4830*x^2 - 16744*x^3 - 113643*x^4 + 534612*x^5 + ...
G.f. = q + 252*q^3 + 4830*q^5 - 16744*q^7 - 113643*q^9 + 534612*q^11 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ q QPochhammer[q]^24, {q, 0, 2 n + 1}]; (* Michael Somos, Apr 17 2015 *)
a[n_] := RamanujanTau[2*n+1]; Array[a, 30, 0] (* Amiram Eldar, Jan 10 2025 *)
PROG
(PARI) {a(n) = if( n<0, 0, n = 2*n+1; polcoeff( x * eta(x + x * O(x^n))^24, n))}; /* Michael Somos, Apr 17 2015 */
CROSSREFS
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Nov 15 2004
EXTENSIONS
More terms from Joshua Zucker, May 15 2006
STATUS
approved