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.

A199554 6*8^n+1.

Original entry on oeis.org

7, 49, 385, 3073, 24577, 196609, 1572865, 12582913, 100663297, 805306369, 6442450945, 51539607553, 412316860417, 3298534883329, 26388279066625, 211106232532993, 1688849860263937, 13510798882111489, 108086391056891905
Offset: 0

Views

Author

Vincenzo Librandi, Nov 08 2011

Keywords

Programs

  • Magma
    [6*8^n+1: n in [0..30]];
  • Mathematica
    6*8^Range[0,20]+1 (* or *) LinearRecurrence[{9,-8},{7,49},20] (* or *) NestList[8#-7&,7,20] (* Harvey P. Dale, Jul 14 2024 *)

Formula

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