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.

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

Original entry on oeis.org

3, 7, 8, 25, 146, 169, 182, 751, 812, 1507, 1591, 3157, 3752, 10651, 12740, 71804, 155953
Offset: 1

Views

Author

T. D. Noe, Apr 22 2005

Keywords

Comments

No other n < 44000.
The Noe and Post reference below utilizes a scheme for its indices which differs by 3 from the indices in A001591. - Robert Price, Oct 13 2014
The sequence is similar to A248757 which uses the indexing scheme starting at 0 as defined by A001591. - Robert Price, Oct 13 2014
a(18) > 2*10^5. - Robert Price, Oct 13 2014

Crossrefs

Cf. A105757 (prime Fibonacci 5-step numbers).

Programs

  • Mathematica
    a = {1, 0, 0, 0, 0}; lst = {}; Do[s = Plus @@ a; a = RotateLeft[a];
      a[[-1]] = s; If[PrimeQ[s], AppendTo[lst, n]], {n, 44000}]; lst
    Flatten[Position[LinearRecurrence[{1,1,1,1,1},{0,0,0,0,1},13000],?PrimeQ]]-4 (* _Harvey P. Dale, Mar 06 2023 *)

Extensions

Restored original sequence after reconsideration and added a(16)-a(17) by Robert Price, Oct 13 2014