OFFSET
0,2
REFERENCES
J. H. Conway and N. J. A. Sloane, "Sphere Packings, Lattices and Groups", Springer-Verlag, p. 119.
Srinivasa Ramanujan, The Lost Notebook and Other Unpublished Papers, Narosa Publishing House, New Delhi, 1988, pp. 116, equation (4).
LINKS
FORMULA
Expansion of (8 * E_6(x^2) - E_6(x)) / 7 in powers of x where E_6() is an Eisenstein series.
MATHEMATICA
terms = 25; E6[q_] = 1 - 504 Sum[k^5 q^(2 k)/(1 - q^(2 k)), {k, 1, terms}]; s = (8*E6[q^2] - E6[q])/7 + O[q]^(2 terms); CoefficientList[s, q^2][[1 ;; terms]] (* Jean-François Alcover, Jul 04 2017 *)
PROG
(PARI) {a(n) = if( n<1, n==0, 72 * (sigma( n, 5) - if( n%2, 0, 8 * sigma( n/2, 5))))} /* Michael Somos, Jul 16 2004 */
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved