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.

A162596 G.f. is the polynomial (1-x^3) * (1-x^6) * (1-x^9) * (1-x^12) * (1-x^15) * (1-x^18) * (1-x^21) * (1-x^24) / (1-x)^8.

Original entry on oeis.org

1, 8, 36, 119, 322, 756, 1595, 3094, 5607, 9604, 15686, 24597, 37232, 54640, 78021, 108717, 148197, 198036, 259888, 335453, 426438, 534513, 661263, 808137, 976395, 1167054, 1380834, 1618106, 1878844, 2162583, 2468385, 2794815, 3139929
Offset: 0

Views

Author

N. J. A. Sloane, Dec 02 2009

Keywords

Comments

This is a row of the triangle in A162499. Only finitely many terms are nonzero.

Programs

  • Magma
    m:=100; R:=PowerSeriesRing(Integers(), m); Coefficients(R!((1-x^3)*(1-x^6)*(1-x^9)*(1-x^12)*(1-x^15)*(1- x^18)*(1-x^21)*(1-x^24)/(1-x)^8)); // G. C. Greubel, Jul 06 2018
  • Mathematica
    CoefficientList[Series[Times@@(1-x^(3*Range[8]))/(1-x)^8,{x,0,40}],x] (* Harvey P. Dale, Jun 03 2012 *)
  • PARI
    x='x+O('x^100); Vec((1-x^3)*(1-x^6)*(1-x^9)*(1-x^12)*(1-x^15)*(1- x^18)*(1-x^21)*(1-x^24)/(1-x)^8) \\ G. C. Greubel, Jul 06 2018