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.

A218729 a(n) = (26^n - 1)/25.

Original entry on oeis.org

0, 1, 27, 703, 18279, 475255, 12356631, 321272407, 8353082583, 217180147159, 5646683826135, 146813779479511, 3817158266467287, 99246114928149463, 2580398988131886039, 67090373691429037015, 1744349715977154962391, 45353092615406029022167, 1179180408000556754576343
Offset: 0

Views

Author

M. F. Hasler, Nov 04 2012

Keywords

Comments

Partial sums of powers of 26 (A009970); q-integers for q=26.

Crossrefs

Programs

Formula

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