cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A108094 Coefficients of series whose 16th power is the theta series of the 16-dimensional Barnes-Wall lattice (see A008409).

Original entry on oeis.org

1, 0, 270, 3840, -514080, -15413760, 1283087040, 62644907520, -3378279124350, -252933976704000, 8502815843769600, 1007506223570707200, -17757117956815481280, -3942183666885514421760, 14527133705347401150720, 15088544258811557869278720, 144818514010649047069497600
Offset: 0

Views

Author

N. J. A. Sloane and Michael Somos, Jun 06 2005

Keywords

Examples

			More precisely, the theta series of the Barnes-Wall lattice begins 1 + 4320*q^2 + 61440*q^3 + 522720*q^4 + 2211840*q^5 + 8960640*q^6 + 23224320*q^7 + ... and the 16th root of this is 1 + 270*q^2 + 3840*q^3 - 514080*q^4 - 15413760*q^5 + 1283087040*q^6 + 62644907520*q^7 - ...
		

Programs

  • Mathematica
    f[q_] := 1/2 (EllipticTheta[2, 0, q]^16 + EllipticTheta[3, 0, q]^16 + EllipticTheta[4, 0, q]^16 + 30 EllipticTheta[2, 0, q]^8 EllipticTheta[3, 0, q]^8);
    CoefficientList[f[q]^(1/16) + O[q]^17, q] (* Jean-François Alcover, Aug 17 2018 *)