login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A004025
Theta series of b.c.c. lattice with respect to long edge.
(Formerly M0928)
2
2, 4, 0, 0, 8, 8, 0, 0, 10, 8, 0, 0, 8, 16, 0, 0, 16, 12, 0, 0, 16, 8, 0, 0, 10, 24, 0, 0, 24, 16, 0, 0, 16, 16, 0, 0, 8, 24, 0, 0, 32, 16, 0, 0, 24, 16, 0, 0, 18, 28, 0, 0, 24, 32, 0, 0, 16, 8, 0, 0, 24, 32, 0, 0, 32, 32, 0, 0, 32, 16, 0, 0, 16, 40, 0, 0, 32
OFFSET
1,1
COMMENTS
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
The body-centered cubic (b.c.c. also known as D3*) lattice is the set of all triples [a, b, c] where the entries are all integers or all one half an odd integer. A long edge is centered at a triple with two integer entries and the remaining entry is one half an odd integer. - Michael Somos, May 31 2012
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
FORMULA
From Michael Somos, May 31 2012: (Start)
Expansion of 2 * x * phi(x) * psi(x^4)^2 = 2 * x * psi(-x^2)^4 / phi(-x) in powers of x where phi(), psi() are Ramanujan theta functions.
Expansion of 2 * eta(q^2)^5 * eta(q^8)^4 / (eta(q)^2 * eta(q^4)^4) in powers of q.
a(4*n) = a(4*n + 3) = 0. a(n) = 2 * A045836(n). a(4*n + 1) = 2 * A045834(n). a(4*n + 2) = 4 * A045828(n). (End)
EXAMPLE
2*q + 4*q^2 + 8*q^5 + 8*q^6 + 10*q^9 + 8*q^10 + 8*q^13 + 16*q^14 + 16*q^17 + ...
MATHEMATICA
a[n_] := Module[{A = x*O[x]^n}, SeriesCoefficient[2*QPochhammer[x^2+A]^5 * (QPochhammer[x^8+A]^4 / (QPochhammer[x+A]^2*QPochhammer[x^4+A]^4)), {x, 0, n}]]; Table[a[n], {n, 0, 80}] (* Jean-François Alcover, Nov 05 2015, adapted from PARI *)
PROG
(PARI) {a(n) = local(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( 2 * eta(x^2 + A)^5 * eta(x^8 + A)^4 / (eta(x + A)^2 * eta(x^4 + A)^4), n))} /* Michael Somos, May 31 2012 */
CROSSREFS
KEYWORD
nonn,easy
STATUS
approved