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.

A248757 Indices of prime Fibonacci 5-step numbers, A001591.

Original entry on oeis.org

6, 10, 11, 28, 149, 172, 185, 754, 815, 1510, 1594, 3160, 3755, 10654, 12743, 71807, 155957
Offset: 1

Views

Author

Robert Price, Oct 13 2014

Keywords

Comments

This sequence is similar to A105756 but uses the indexing scheme defined by A001591 whose indices start with 0.
a(18) > 2*10^5.

Crossrefs

Programs

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

Formula

a(n) = A105756 (n) + 3.