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.

A199483 6*7^n+1.

Original entry on oeis.org

7, 43, 295, 2059, 14407, 100843, 705895, 4941259, 34588807, 242121643, 1694851495, 11863960459, 83047723207, 581334062443, 4069338437095, 28485369059659, 199397583417607, 1395783083923243, 9770481587462695, 68393371112238859
Offset: 0

Views

Author

Vincenzo Librandi, Nov 07 2011

Keywords

Programs

  • Magma
    [6*7^n+1: n in [0..30]];
  • Mathematica
    LinearRecurrence[{8,-7},{7,43},30] (* or *) NestList[7#-6&,7,30] (* Harvey P. Dale, Apr 13 2015 *)

Formula

a(n) = 7*a(n-1)-6.
a(n) = 8*a(n-1)-7*a(n-2).
G.f.: (7-13*x)/((1-x)*(1-7*x)).