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.

A074615 a(n) = 5^n + 6^n.

Original entry on oeis.org

2, 11, 61, 341, 1921, 10901, 62281, 358061, 2070241, 12030821, 70231801, 411625181, 2420922961, 14281397141, 84467679721, 500702562701, 2973697798081, 17689598897861, 105374653934041, 628433226338621
Offset: 0

Views

Author

Robert G. Wilson v, Aug 26 2002

Keywords

Crossrefs

Programs

  • Magma
    [5^n+6^n: n in [0..30]]; // G. C. Greubel, Jan 11 2023
    
  • Mathematica
    Table[5^n + 6^n, {n, 0, 20}]
    LinearRecurrence[{11,-30},{2,11},20] (* Harvey P. Dale, Aug 03 2025 *)
  • SageMath
    [5^n+6^n for n in range(31)] # G. C. Greubel, Jan 11 2023

Formula

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