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.

A074613 a(n) = 4^n + 7^n.

Original entry on oeis.org

2, 11, 65, 407, 2657, 17831, 121745, 839927, 5830337, 40615751, 283523825, 1981521047, 13858064417, 96956119271, 678491508305, 4748635251767, 33237225536897, 232647693856391, 1628482317387185, 11399170063280087
Offset: 0

Views

Author

Robert G. Wilson v, Aug 26 2002

Keywords

Crossrefs

Programs

  • Magma
    [4^n+7^n: n in [0..30]]; // G. C. Greubel, Mar 10 2023
    
  • Mathematica
    Table[4^n + 7^n, {n, 0, 25}]
    LinearRecurrence[{11,-28},{2,11},30] (* Harvey P. Dale, Oct 03 2013 *)
  • SageMath
    [4^n+7^n for n in range(31)] # G. C. Greubel, Mar 10 2023

Formula

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