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.

A074609 a(n) = 3^n + 8^n.

Original entry on oeis.org

2, 11, 73, 539, 4177, 33011, 262873, 2099339, 16783777, 134237411, 1073800873, 8590111739, 68720008177, 549757408211, 4398051294073, 35184386437739, 281475019757377, 2251799942825411, 18014398896902473, 144115189238117339
Offset: 0

Views

Author

Robert G. Wilson v, Aug 25 2002

Keywords

Crossrefs

Programs

  • Magma
    [3^n+8^n: n in [0..30]]; // G. C. Greubel, Jan 14 2024
    
  • Mathematica
    Table[3^n + 8^n, {n, 0, 25}]
    LinearRecurrence[{11,-24},{2,11},30] (* Harvey P. Dale, Mar 10 2015 *)
  • SageMath
    [3^n+9^n for n in range(31)] # G. C. Greubel, Jan 14 2024

Formula

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