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.

A045513 Expansion of 1/((1-x)*(1-x^2)^2*(1-x^3)^2*(1-x^4)^2*(1-x^5)*(1-x^6)).

Original entry on oeis.org

1, 1, 3, 5, 10, 15, 27, 39, 63, 90, 135, 187, 270, 364, 505, 670, 902, 1173, 1545, 1976, 2550, 3218, 4081, 5083, 6357, 7825, 9659, 11772, 14366, 17342, 20956, 25080, 30031, 35667, 42357, 49945, 58881
Offset: 0

Views

Author

Keywords

Comments

This is associated with the root system E8, and can be described using the additive function on the affine E8 diagram:
3
|
2--4--6--5--4--3--2--1

Crossrefs

For G2, the corresponding sequence is A001399.
For D4, the corresponding sequence is A001752.
For F4, the corresponding sequence is A115264.
For E6, the corresponding sequence is A164680.
For E7, the corresponding sequence is A210068.

Programs

  • Magma
    R:=PowerSeriesRing(Integers(), 40); Coefficients(R!( 1/((1-x)*(1-x^2)^2*(1-x^3)^2*(1-x^4)^2*(1-x^5)*(1-x^6)) )); // G. C. Greubel, Jan 13 2020
  • Maple
    seq(coeff(series(1/((1-x)*(1-x^2)^2*(1-x^3)^2*(1-x^4)^2*(1-x^5)*(1-x^6)), x, n+1), x, n), n = 0..40); # G. C. Greubel, Jan 13 2020
  • Mathematica
    CoefficientList[Series[1/((1-x)(1-x^2)^2(1-x^3)^2(1-x^4)^2(1-x^5)(1-x^6)),{x,0,40}],x] (* Harvey P. Dale, Sep 16 2019 *)
  • PARI
    Vec(1/((1-x)*(1-x^2)^2*(1-x^3)^2*(1-x^4)^2*(1-x^5)*(1-x^6))+O(x^99)) \\ Charles R Greathouse IV, Sep 26 2012
    

Formula

G.f.: 1/((1-x)*(1-x^2)^2*(1-x^3)^2*(1-x^4)^2*(1-x^5)*(1-x^6)).