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.

A155646 a(n) = 8^n + 6^n - 1.

Original entry on oeis.org

1, 13, 99, 727, 5391, 40543, 308799, 2377087, 18456831, 144295423, 1134207999, 8952731647, 70896259071, 562816507903, 4476410675199, 35654557073407, 284296086618111, 2268726473129983, 18115958466150399, 144724547815866367
Offset: 0

Views

Author

Mohammad K. Azarian, Jan 31 2009

Keywords

Crossrefs

Programs

  • Mathematica
    Table[8^n+6^n-1,{n,0,20}] (* or *) LinearRecurrence[{15,-62,48},{1,13,99},20] (* Harvey P. Dale, Jul 17 2011 *)
  • PARI
    a(n)= 8^n+6^n-1 \\ Charles R Greathouse IV, Jul 31 2011

Formula

G.f.: 1/(1-8*x)+1/(1-6*x)-1/(1-x). E.g.f.: e^(8*x)+e^(6*x)-e^x.
a(n) = 14*a(n-1)-48*a(n-2)-35 with a(0)=1, a(1)=13. [Vincenzo Librandi, Jul 21 2010]
a(0)=1, a(1)=13, a(2)=99, a(n) = 15*a(n-1)-62*a(n-2)+48*a(n-3). [Harvey P. Dale, Jul 17 2011]