OFFSET
0,4
COMMENTS
Positions of nonzero entries seem to be A047328. - Andrey Zabolotskiy, Nov 10 2021
REFERENCES
J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 114.
LINKS
S. Ahlgren, The sixth, eighth, ninth and tenth powers of Ramanujan's theta function, Proc. Amer. Math. Soc., 128 (1999), 1333-1338; F_7(q).
G. Nebe and N. J. A. Sloane, Home page for this lattice
FORMULA
Expansion of f(-x)^7 / f(-x^7) + 7 * x * f(-x)^3 * f(-x^7)^3 + 7 * x^2 * f(-x^7)^7 / f(-x) in powers of x where f() is a Ramanujan theta function. - Michael Somos, Jan 29 2011
a(7*n) = A008446(n). a(7*n + 1) = a(7*n + 2) = a(7*n + 4) = 0. - Michael Somos, Jan 29 2011
EXAMPLE
1 + 14*x^3 + 42*x^5 + 70*x^6 + 42*x^7 + 210*x^10 + 294*x^12 + 294*x^13 + ...
MATHEMATICA
a[n_] := Module[{A, A7}, A = x*O[x]^n; A7 = QPochhammer[x^7 + A]; A = QPochhammer[x + A]; SeriesCoefficient[A^7 / A7 + 7 * x * (A * A7)^3 + 7 * x^2 * A7^7 / A, {x, 0, n}]]; Table[a[n], {n, 0, 80}] (* Jean-François Alcover, Nov 05 2015, adapted from Michael Somos's PARI script *)
PROG
(PARI) {a(n) = local(A, A7); if( n<0, 0, A = x * O(x^n); A7 = eta(x^7 + A); A = eta(x + A); polcoeff( A^7 / A7 + 7 * x * (A * A7)^3 + 7 * x^2 * A7^7 / A, n))}; /* Michael Somos, Jan 29 2011 */
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved