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.

A030280 COMPOSE triangular numbers with triangular numbers.

Original entry on oeis.org

1, 6, 30, 137, 588, 2415, 9600, 37209, 141336, 528049, 1945800, 7086555, 25550547, 91319973, 323890062, 1140985116, 3995155506, 13913280006, 48216776266, 166355744244, 571636515369, 1957015021744, 6677155551312
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    CoefficientList[Series[((1-x)^6)/((1-4x+3x^2-x^3)^3),{x,0,30}],x] (* or *) LinearRecurrence[{12,-57,139,-195,174,-102,39,-9,1},{1,6,30,137,588,2415,9600,37209,141336},30] (* Harvey P. Dale, Jan 08 2013 *)

Formula

G.f.: [(1-x)^6]/[(1-4x+3x^2-x^3)^3].
a(1)=1, a(2)=6, a(3)=30, a(4)=137, a(5)=588, a(6)=2415, a(7)=9600, a(8)=37209, a(9)=141336, a(n)=12*a(n-1)-57*a(n-2)+139*a(n-3)- 195*a(n-4)+ 174*a(n-5)-102*a(n-6)+39*a(n-7)-9*a(n-8)+a(n-9). - Harvey P. Dale, Jan 08 2013