OFFSET
0,5
REFERENCES
J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 120.
LINKS
Andy Huchala, Table of n, a(n) for n = 0..3000
G. Nebe and N. J. A. Sloane, Home page for this lattice
FORMULA
Theta series in terms of Jacobi theta series: (theta_2)^9 + (theta_3)^9. - Sean A. Irvine, Mar 28 2018
EXAMPLE
G.f. = 1 + 18*q^4 + 144*q^8 + ...
PROG
(PARI)
N=66; q='q+O('q^N);
T3(q) = eta(q^2)^5 / ( eta(q)^2 * eta(q^4)^2 );
T2(q) = eta(q^4)^2 / eta(q^2);
Vec( T3(q^4)^9 + (2 * q * T2(q^4))^9 )
\\ Joerg Arndt, Mar 29 2018
(Magma)
L := Dual(Lattice("D", 9));
B := Basis(ThetaSeriesModularFormSpace(L), 100);
S := [ 1, 0, 0, 0, 18];
Coefficients(&+[B[i] * S[i] : i in [1..5]]); // Andy Huchala, Jul 24 2021
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Andy Huchala, Jul 24 2021
STATUS
approved