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.

A074616 a(n) = 5^n + 7^n.

Original entry on oeis.org

2, 12, 74, 468, 3026, 19932, 133274, 901668, 6155426, 42306732, 292240874, 2026154868, 14085427826, 98109713532, 684326588474, 4778079088068, 33385518460226, 233393453440332, 1632228295176074, 11417968671701268
Offset: 0

Views

Author

Robert G. Wilson v, Aug 26 2002

Keywords

Crossrefs

Programs

  • Mathematica
    Table[5^n + 7^n, {n, 0, 20}]
    LinearRecurrence[{12,-35},{2,12},20] (* Harvey P. Dale, Aug 26 2021 *)

Formula

From Mohammad K. Azarian, Jan 11 2009: (Start)
G.f.: 1/(1-5*x) + 1/(1-7*x).
E.g.f.: e^(5*x) + e^(7*x). (End)
a(n) = 12*a(n-1) - 35*a(n-2) with a(0)=2, a(1)=12. - Vincenzo Librandi, Jul 21 2010