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.

A272125 a(n) = n^3*(2*n^2+1)/3.

Original entry on oeis.org

0, 1, 24, 171, 704, 2125, 5256, 11319, 22016, 39609, 67000, 107811, 166464, 248261, 359464, 507375, 700416, 948209, 1261656, 1653019, 2136000, 2725821, 3439304, 4294951, 5313024, 6515625, 7926776, 9572499, 11480896, 13682229, 16209000, 19096031, 22380544, 26102241
Offset: 0

Views

Author

Vincenzo Librandi, Apr 22 2016

Keywords

Comments

Partial sums are in A271535.
After 1, is A195279 the second bisection?

Crossrefs

Cf. A271535.

Programs

  • Magma
    [n^3*(2*n^2+1)/3: n in [0..40]];
    
  • Mathematica
    Table[n^3 (2 n^2 + 1)/3, {n, 0, 40}]
  • PARI
    vector(100, n, n--; n^3*(2*n^2+1)/3) \\ Altug Alkan, Apr 22 2016

Formula

O.g.f.: x*(1+18*x+42*x^2+18*x^3+x^4)/(1-x)^6.
E.g.f.: x*(3+33*x+51*x^2+20*x^3+2*x^4)*exp(x)/3.
a(n) = 6*a(n-1)-15*a(n-2)+20*a(n-3)-15*a(n-4)+6*a(n-5)-a(n-6).