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.

A218733 a(n) = (30^n - 1)/29.

Original entry on oeis.org

0, 1, 31, 931, 27931, 837931, 25137931, 754137931, 22624137931, 678724137931, 20361724137931, 610851724137931, 18325551724137931, 549766551724137931, 16492996551724137931, 494789896551724137931, 14843696896551724137931, 445310906896551724137931, 13359327206896551724137931
Offset: 0

Views

Author

M. F. Hasler, Nov 04 2012

Keywords

Comments

Partial sums of powers of 30 (A009974).

Crossrefs

Programs

Formula

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