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.

A167561 The fourth row of the ED2 array A167560.

Original entry on oeis.org

24, 80, 192, 384, 680, 1104, 1680, 2432, 3384, 4560, 5984, 7680, 9672, 11984, 14640, 17664, 21080, 24912, 29184, 33920, 39144, 44880, 51152, 57984, 65400, 73424, 82080, 91392, 101384, 112080, 123504, 135680, 148632, 162384, 176960
Offset: 1

Views

Author

Johannes W. Meijer, Nov 10 2009

Keywords

Crossrefs

Cf. A167560.

Programs

  • Mathematica
    Table[4*n^3 + 4*n^2 + 16*n, {n, 1, 100}] (* or *) LinearRecurrence[{4, -6, 4, -1}, {24, 80, 192, 384}, 100] (* G. C. Greubel, Jun 15 2016 *)

Formula

a(n) = 4*n^3 + 4*n^2 + 16*n.
G.f.: (0*z^3 + 16*z^2 - 16*z + 24)/(1-z)^4.
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4). - G. C. Greubel, Jun 15 2016