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.

A105759 Prime Fibonacci 6-step numbers, A001592.

Original entry on oeis.org

2, 13435170943, 26649774581, 610186256014622144673892607
Offset: 1

Views

Author

T. D. Noe, Apr 22 2005

Keywords

Comments

The next term has 196 digits. - Harvey P. Dale, Apr 23 2025

Crossrefs

Cf. A105758 (indices of prime Fibonacci 6-step numbers).

Programs

  • Mathematica
    a={1, 0, 0, 0, 0, 0}; lst={}; Do[s=Plus@@a; a=RotateLeft[a]; a[[ -1]]=s; If[PrimeQ[s], AppendTo[lst, s]], {n, 1000}]; lst
    Select[LinearRecurrence[{1,1,1,1,1,1},{1,0,0,0,0,0},100],PrimeQ] (* Harvey P. Dale, Apr 23 2025 *)