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.

A282253 Coefficients in q-expansion of E_6^3, where E_6 is the Eisenstein series shown in A013973.

Original entry on oeis.org

1, -1512, 712152, -78097824, -11474230824, -498089967984, -11088580243104, -152351956669248, -1474676091461160, -10921529499813576, -65490182325115632, -331010378444247264, -1452953351890984608, -5665062963045803184, -19968586384352171328
Offset: 0

Views

Author

Seiichi Manyama, Feb 10 2017

Keywords

Crossrefs

Cf. A282018 (E_2^3), A008411 (E_4^3), this sequence (E_6^3).
Cf. A013973 (E_6), A280869 (E_6^2), this sequence (E_6^3).

Programs

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