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.

A218731 a(n) = (28^n - 1)/27.

Original entry on oeis.org

0, 1, 29, 813, 22765, 637421, 17847789, 499738093, 13992666605, 391794664941, 10970250618349, 307167017313773, 8600676484785645, 240818941573998061, 6742930364071945709, 188802050194014479853, 5286457405432405435885, 148020807352107352204781, 4144582605859005861733869
Offset: 0

Views

Author

M. F. Hasler, Nov 04 2012

Keywords

Comments

Partial sums of powers of 28 (A009972).

Crossrefs

Programs

Formula

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