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.

A218728 a(n) = (25^n - 1)/24.

Original entry on oeis.org

0, 1, 26, 651, 16276, 406901, 10172526, 254313151, 6357828776, 158945719401, 3973642985026, 99341074625651, 2483526865641276, 62088171641031901, 1552204291025797526, 38805107275644938151, 970127681891123453776, 24253192047278086344401, 606329801181952158610026
Offset: 0

Views

Author

M. F. Hasler, Nov 04 2012

Keywords

Comments

Partial sums of powers of 25 (A009969); q-integers for q=25.
Partial sums are in A014914. Also, the sequence is related to A014943 by A014943(n) = n*a(n) - Sum_{i=0..n-1} a(i) for n > 0. - Bruno Berselli, Nov 07 2012

Crossrefs

Programs

Formula

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