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.

A067239 a(0)=1, a(n) = 8*n*(2*n-1).

Original entry on oeis.org

1, 8, 48, 120, 224, 360, 528, 728, 960, 1224, 1520, 1848, 2208, 2600, 3024, 3480, 3968, 4488, 5040, 5624, 6240, 6888, 7568, 8280, 9024, 9800, 10608, 11448, 12320, 13224, 14160, 15128, 16128, 17160, 18224, 19320, 20448, 21608, 22800, 24024
Offset: 0

Views

Author

Benoit Cloitre, Mar 03 2002

Keywords

Comments

Engel expansion of cosh(1/2).
Also, 8 times hexagonal numbers (8*A000384(n) = A152750(n)), for n > 0. - Omar E. Pol, Dec 14 2008

Crossrefs

Cf. A006784 for Engel expansion definition.

Programs

Formula

a(n) = a(n-1) + 32*n - 24 (with a(1)=8). - Vincenzo Librandi, Dec 15 2010
From Colin Barker, Apr 13 2012: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3) for n > 3.
G.f.: (1 + 5*x + 27*x^2 - x^3)/(1-x)^3. (End)
E.g.f.: 1 + 8*exp(x)*x*(1 + 2*x). - Elmo R. Oliveira, Dec 15 2024
From Amiram Eldar, May 05 2025: (Start)
Sum_{n>=0} 1/a(n) = log(2)/4 + 1.
Sum_{n>=0} (-1)^n/a(n) = 1 - Pi/16 + log(2)/8. (End)