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.

A282096 Coefficients in q-expansion of E_2*E_6, where E_2, E_6 are the Eisenstein series shown in A006352, A013973, respectively.

Original entry on oeis.org

1, -528, -4608, 312384, 3664416, 21745440, 86782464, 276703872, 741794400, 1758969264, 3797729280, 7568097984, 14222957952, 25253852064, 43166426112, 70518360960, 112406614752, 172631876832, 260795119104, 381636168000, 552633117120, 778105665024
Offset: 0

Views

Author

Seiichi Manyama, Feb 06 2017

Keywords

Crossrefs

Cf. A006352 (E_2), A013973 (E_6).
Cf. A281374 (E_2^2), A282019 (E_2*E_4), this sequence (E_2*E_6), A282101 (E_2*E_8), A282102 (E_2*E_10).

Programs

  • Mathematica
    terms = 22;
    E2[x_] = 1 - 24*Sum[k*x^k/(1 - x^k), {k, 1, terms}];
    E6[x_] = 1 - 504*Sum[k^5*x^k/(1 - x^k), {k, 1, terms}];
    E2[x]*E6[x] + O[x]^terms // CoefficientList[#, x]& (* Jean-François Alcover, Feb 26 2018 *)