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.

A074553 a(n) = 3^n + 5^n + 8^n.

Original entry on oeis.org

3, 16, 98, 664, 4802, 36136, 278498, 2177464, 17174402, 136190536, 1083566498, 8638939864, 68964148802, 550978111336, 4404154809698, 35214904015864, 281627607648002, 2252562882278536, 18018213594168098, 144134262724445464
Offset: 0

Views

Author

Robert G. Wilson v, Aug 23 2002

Keywords

Crossrefs

Programs

  • Magma
    [3^n + 5^n + 8^n: n in [0..30]]; // Vincenzo Librandi, Jun 13 2011
  • Mathematica
    Table[3^n + 5^n + 8^n, {n, 0, 20}]

Formula

From Mohammad K. Azarian, Dec 30 2008: (Start)
G.f.: 1/(1-3*x) + 1/(1-5*x) + 1/(1-8*x).
E.g.f.: exp(3*x) + exp(5*x) + exp(8*x). (End)
a(n) = 16*a(n-1) - 79*a(n-2) + 120*a(n-3).