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.

A074529 a(n) = 2^n + 3^n + 7^n.

Original entry on oeis.org

3, 12, 62, 378, 2498, 17082, 118442, 825858, 5771618, 40373802, 282535322, 1977505938, 13841822738, 96890612922, 678227872202, 4747575891618, 33232973681858, 232630643258442, 1628413985593082, 11398896348158898
Offset: 0

Views

Author

Robert G. Wilson v, Aug 23 2002

Keywords

Crossrefs

Programs

  • Magma
    [2^n + 3^n + 7^n: n in [0..25]]; // Vincenzo Librandi, Jun 11 2011
  • Mathematica
    Table[2^n + 3^n + 7^n, {n, 0, 20}]
    LinearRecurrence[{12,-41,42},{3,12,62},20] (* Harvey P. Dale, Mar 29 2020 *)

Formula

From Mohammad K. Azarian, Dec 27 2008: (Start)
G.f.: 1/(1-2*x) + 1/(1-3*x) + 1/(1-7*x).
E.g.f.: exp(2*x) + exp(3*x) + exp(7*x). (End)