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.

A256498 Indices of primes in the 9th-order Fibonacci number sequence, A127193.

Original entry on oeis.org

11, 15, 25, 31, 36, 37, 42, 45, 48, 75, 149, 156, 160, 182, 268, 444, 581, 1025, 1125, 2504, 6900, 10924, 11807, 25262, 26774, 28739, 29367, 34902, 43345, 53878, 74473, 107070, 170300, 178994
Offset: 1

Views

Author

Robert Price, Mar 31 2015

Keywords

Comments

a(35) > 2*10^5.

Crossrefs

Programs

  • Mathematica
    a={1,1,1,1,1,1,1,1,1}; step=9; lst={}; For[n=step+1,n<=1000,n++, sum=Plus@@a; If[PrimeQ[sum], AppendTo[lst,n]]; a=RotateLeft[a]; a[[step]]=sum]; lst