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.

A256499 Primes in the 9th-order Fibonacci numbers A127193.

Original entry on oeis.org

17, 257, 260609, 16580657, 527972353, 1054904321, 33590968001, 267934222337, 2137144350721, 279308966066204560897, 4904838477959792746889087209953222309396481, 623502124433801536413569315448615191583313921, 9936775914719167257001281976859570231260282873
Offset: 1

Views

Author

Robert Price, Mar 31 2015

Keywords

Comments

a(14) is too large to display here. It has 53 digits and is the 182nd term in A127193.

Crossrefs

Programs

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