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.

A074545 a(n) = 2^n + 7^n + 9^n.

Original entry on oeis.org

3, 18, 134, 1080, 8978, 75888, 649154, 5606640, 48811778, 427774608, 3769260674, 33358388400, 296270827778, 2638754846928, 23555015544194, 210638693637360, 1886253119486978, 16909812213784848, 151723048895171714
Offset: 0

Views

Author

Robert G. Wilson v, Aug 23 2002

Keywords

Crossrefs

Programs

  • Magma
    [ 2^n + 7^n + 9^n: n in [0..30]]; // Vincenzo Librandi, Jun 13 2011
  • Mathematica
    Table[2^n + 7^n + 9^n, {n, 0, 20}]
    LinearRecurrence[{18,-95,126},{3,18,134},20] (* Harvey P. Dale, Apr 13 2019 *)

Formula

From Mohammad K. Azarian, Dec 28 2008: (Start)
G.f.: 1/(1-2*x) + 1/(1-7*x) + 1/(1-9*x).
E.g.f.: exp(2*x) + exp(7*x) + exp(9*x). (End)
a(n) = 18*a(n-1) - 95*a(n-2) + 126*a(n-3).