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.

A283551 a(n) = -1 + 5*n/6 + n^3/6.

Original entry on oeis.org

-1, 0, 2, 6, 13, 24, 40, 62, 91, 128, 174, 230, 297, 376, 468, 574, 695, 832, 986, 1158, 1349, 1560, 1792, 2046, 2323, 2624, 2950, 3302, 3681, 4088, 4524, 4990, 5487, 6016, 6578, 7174, 7805, 8472, 9176, 9918, 10699, 11520, 12382, 13286, 14233, 15224, 16260
Offset: 0

Views

Author

Paul Curtz, Mar 10 2017

Keywords

Comments

Essentially a duplicate of A003600.

Examples

			G.f. = -1 + 2*x^2 + 6*x^3 + 13*x^4 + 24*x^5 + 40*x^6 + 62*x^7 + ... - _Michael Somos_, Jul 07 2022
		

Crossrefs

Essentially a duplicate of A003600.

Programs

Formula

a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n > 3.
a(n) = a(n-1) + A000124(n).
G.f.: -(1 - 4*x + 4*x^2 - 2*x^3)/(1-x)^4. - Robert G. Wilson v, Mar 15 2017
E.g.f.: (1/6)*(-6 + 6*x + 3*x^2 + x^3)*exp(x). - G. C. Greubel, Apr 18 2025

Extensions

Corrected by Jeremy Gardiner, Jan 29 2019