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.

A167548 The fifth row of the ED1 array A167546.

Original entry on oeis.org

24, 240, 960, 2688, 6144, 12264, 22200, 37320, 59208, 89664, 130704, 184560, 253680, 340728, 448584, 580344, 739320, 929040, 1153248, 1415904, 1721184, 2073480, 2477400, 2937768, 3459624, 4048224, 4709040, 5447760, 6270288
Offset: 1

Views

Author

Johannes W. Meijer, Nov 10 2009

Keywords

Crossrefs

Cf. A167546.

Programs

  • Mathematica
    Table[9*n^4 - 6*n^3 + 63*n^2 - 66*n + 24, {n, 1, 100}] (* or *) LinearRecurrence[{5,-10,10,-5,1}, {24, 240, 960, 2688, 6144}, 100] (* G. C. Greubel, Jun 15 2016 *)

Formula

a(n) = 9*n^4 - 6*n^3 + 63*n^2 - 66*n + 24.
G.f.: (24+120*z+0*z^2+48*z^3+24*z^4)/(1-z)^5.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). - G. C. Greubel, Jun 15 2016