OFFSET
0,2
COMMENTS
In the Eichler and Zagier reference this is e_4(A014601(n)), n >= 0, (p. 141), where e_4 is obtained from e_{4,1}(n,r), eq. (7), p. 22, depending only on 4*n-r^2 >= 0 (for integers n and r), i.e. on A014601(n), n >= 0 (with a new notation for n). - Wolfdieter Lang, Jan 08 2016
REFERENCES
J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 125.
M. Eichler and D. Zagier, The Theory of Jacobi Forms, Birkhäuser, 1985, p. 141.
LINKS
N. Elkies and B. H. Gross, Embeddings into the integral octonions, Olga Taussky-Todd: in memoriam, Pacific J. Math. 1997, Special Issue, 147-158.
PROG
(PARI) f(n) = local(A); if( n<0, 0, A = sum(k=1, sqrtint(n), 2 * x^k^2, 1 + x * O(x^n)); polcoeff( A^3 * (A^4 + 7 * subst(A, x, -x)^4) / 8, n)); \\ A003781
lista(nn) = select(x->(x>0), vector(nn, k, f(k-1))); \\ Michel Marcus, Nov 11 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Michel Marcus, Nov 11 2023
STATUS
approved