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.

A004120 Expansion of (1 + x - x^5) / (1 - x)^3.

Original entry on oeis.org

1, 4, 9, 16, 25, 35, 46, 58, 71, 85, 100, 116, 133, 151, 170, 190, 211, 233, 256, 280, 305, 331, 358, 386, 415, 445, 476, 508, 541, 575, 610, 646, 683, 721, 760, 800, 841, 883, 926, 970, 1015, 1061, 1108, 1156, 1205
Offset: 0

Views

Author

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Programs

  • Magma
    [1,4,9] cat [n*(n+11)/2-5: n in [3..30]]; // Vincenzo Librandi, Oct 08 2011
    
  • Maple
    A004120:=(-1-z+z**5)/(z-1)**3; # Simon Plouffe in his 1992 dissertation
  • Mathematica
    i=7;s=1;lst={s};Do[s+=n+i;If[s>=0, AppendTo[lst, s]], {n, 0, 6!, 1}];lst (* Vladimir Joseph Stephan Orlovsky, Oct 30 2008 *)
    CoefficientList[Series[(1+x-x^5)/(1-x)^3,{x,0,50}],x] (* or *) Join[ {1,4,9}, LinearRecurrence[{3,-3,1},{16,25,35},50]] (* Harvey P. Dale, Oct 11 2011 *)
  • PARI
    a(n)=if(n>2,(n^2+11*n)/2-5,(n+1)^2) \\ Charles R Greathouse IV, Sep 30 2015

Formula

a(n) = n*(n + 11)/2 - 5, n>=3. - R. J. Mathar, Mar 15 2011
a(n) = A302537(n-1), n>=3. - R. J. Mathar, Apr 24 2024