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.

A249635 Indices of prime Fibonacci 6-step numbers, A001592.

Original entry on oeis.org

7, 40, 41, 96, 664, 6095, 8419, 11471, 13690, 38835, 49832, 97152
Offset: 1

Views

Author

Robert Price, Nov 02 2014

Keywords

Comments

This sequence is similar to A105758 but uses the indexing scheme defined by A001592, whose indices start with 0.
a(13) > 3*10^5.

Crossrefs

Programs

  • Mathematica
    a = {0, 0, 0, 0, 0, 1}; For[n = 6, n ≤ 1000, n++, sum = Plus @@ a;
    If[PrimeQ[sum], Print[n]]; a = RotateLeft[a]; a[[6]] = sum]

Formula

a(n) = A105758 (n) + 4.