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.

A027444 a(n) = n^3 + n^2 + n.

Original entry on oeis.org

0, 3, 14, 39, 84, 155, 258, 399, 584, 819, 1110, 1463, 1884, 2379, 2954, 3615, 4368, 5219, 6174, 7239, 8420, 9723, 11154, 12719, 14424, 16275, 18278, 20439, 22764, 25259, 27930, 30783, 33824, 37059, 40494, 44135, 47988, 52059, 56354, 60879, 65640, 70643, 75894
Offset: 0

Views

Author

Patrick De Geest and Mark Milhet (mm992395(AT)shellus.com)

Keywords

Comments

For n>1, a(n) is the volume of a truncated square pyramid with height n and base lengths n+2 and n-1. - Wesley Ivan Hurt, Apr 05 2016

Examples

			For n = 4, 4^3 + 4^2 + 4 = 64 + 16 + 4 = 84.
		

Crossrefs

Column k=3 of A228275.
Cf. A270109.

Programs

Formula

O.g.f.: x*(3 + 2*x + x^2)/(1 - x)^4. - R. J. Mathar, Feb 04 2008
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) for n>3. - Wesley Ivan Hurt, Apr 05 2016