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.

A105761 Prime Fibonacci 7-step numbers, A066178.

Original entry on oeis.org

2, 127, 31489
Offset: 1

Views

Author

T. D. Noe, Apr 22 2005, May 13 2008

Keywords

Comments

The next term is the 30673-digit probable prime 59456197869789581...206057955817 that is the 102490th term of the heptanacci sequence (using the definition in Noe-Post and Weisstein). This is too large to include here.

Programs

  • Mathematica
    a={1, 0, 0, 0, 0, 0, 0}; lst={}; Do[s=Plus@@a; a=RotateLeft[a]; a[[ -1]]=s; If[PrimeQ[s], AppendTo[lst, s]], {n, 100}]; lst