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.

A198769 a(n) = (9*5^n-1)/4.

Original entry on oeis.org

2, 11, 56, 281, 1406, 7031, 35156, 175781, 878906, 4394531, 21972656, 109863281, 549316406, 2746582031, 13732910156, 68664550781, 343322753906, 1716613769531, 8583068847656, 42915344238281, 214576721191406, 1072883605957031, 5364418029785156, 26822090148925781
Offset: 0

Views

Author

Vincenzo Librandi, Oct 30 2011

Keywords

Crossrefs

Programs

  • Magma
    [(9*5^n-1)/4: n in [0..30]];
  • Mathematica
    (9*5^Range[0,30]-1)/4 (* or *) LinearRecurrence[{6,-5},{2,11},30] (* Harvey P. Dale, May 07 2012 *)

Formula

a(n) = 5*a(n-1)+1.
a(n) = 6*a(n-1)-5*a(n-2), n>1.
G.f.: (2-x)/(5*x^2-6*x+1). - Harvey P. Dale, May 07 2012