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.

A218727 a(n) = (24^n - 1)/23.

Original entry on oeis.org

0, 1, 25, 601, 14425, 346201, 8308825, 199411801, 4785883225, 114861197401, 2756668737625, 66160049703001, 1587841192872025, 38108188628928601, 914596527094286425, 21950316650262874201, 526807599606308980825, 12643382390551415539801, 303441177373233972955225
Offset: 0

Views

Author

M. F. Hasler, Nov 04 2012

Keywords

Comments

Partial sums of powers of 24 (A009968); q-integers for q=24: diagonal k=1 in triangle A022188.
Partial sums are in A014913. Also, the sequence is related to A014942 by A014942(n) = n*a(n) - Sum_{i=0..n-1} a(i) for n > 0. [Bruno Berselli, Nov 07 2012]

Crossrefs

Programs

Formula

From Vincenzo Librandi, Nov 07 2012: (Start)
G.f.: x/((1-x)*(1-24*x)).
a(n) = floor(24^n/23).
a(n) = 25*a(n-1) - 24*a(n-2). (End)
E.g.f.: exp(x)*(exp(23*x) - 1)/23. - Elmo R. Oliveira, Aug 29 2024