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.

A105766 Indices of prime Lucas 6-step numbers, A074584.

Original entry on oeis.org

2, 3, 5, 8, 11, 32, 37, 46, 123, 237, 332, 408, 772, 827, 1523, 5610, 11273, 14505
Offset: 1

Views

Author

T. D. Noe, Apr 22 2005

Keywords

Comments

No other n < 30000.

Crossrefs

Cf. A105767 (prime Lucas 6-step numbers).

Programs

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