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.

A074530 a(n) = 2^n + 3^n + 8^n.

Original entry on oeis.org

3, 13, 77, 547, 4193, 33043, 262937, 2099467, 16784033, 134237923, 1073801897, 8590113787, 68720012273, 549757416403, 4398051310457, 35184386470507, 281475019822913, 2251799942956483, 18014398897164617, 144115189238641627
Offset: 0

Views

Author

Robert G. Wilson v, Aug 23 2002

Keywords

Crossrefs

Programs

  • Magma
    [2^n + 3^n + 8^n: n in [0..25]]; // Vincenzo Librandi, Jun 11 2011
  • Mathematica
    Table[2^n + 3^n + 8^n, {n, 0, 20}]
    LinearRecurrence[{13,-46,48},{3,13,77},20] (* Harvey P. Dale, Aug 04 2025 *)

Formula

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