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.

Showing 1-1 of 1 results.

A309372 a(n) = n^2 - n^3 + n^4.

Original entry on oeis.org

0, 1, 12, 63, 208, 525, 1116, 2107, 3648, 5913, 9100, 13431, 19152, 26533, 35868, 47475, 61696, 78897, 99468, 123823, 152400, 185661, 224092, 268203, 318528, 375625, 440076, 512487, 593488, 683733, 783900, 894691, 1016832, 1151073, 1298188, 1458975, 1634256, 1824877, 2031708, 2255643, 2497600
Offset: 0

Views

Author

John H. Chakkour, Aug 02 2019

Keywords

Examples

			a(4) = 4^2 - 4^3 + 4^4 = 16 - 64 + 256 = 208.
		

Crossrefs

Cf. A132998.

Programs

  • PARI
    concat(0, Vec(x*(1 + 3*x)*(1 + 4*x + x^2) / (1 - x)^5 + O(x^40))) \\ Colin Barker, Aug 11 2019
  • Python
    for x in range(100):
        print((x**2)-(x**3)+(x**4))
    

Formula

From Colin Barker, Aug 11 2019: (Start)
G.f.: x*(1 + 3*x)*(1 + 4*x + x^2) / (1 - x)^5.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) for n>5.
(End)
Showing 1-1 of 1 results.