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.

A257228 Primes in the 10th-order Fibonacci numbers A122265.

Original entry on oeis.org

2, 3876345660966505581780035851822613413637045687942554538584103751904155528656612320450718024564637501177857, 15784273697726525594915158437704910106795669967932151790483411869827615323130147795459165734845011296559523773
Offset: 1

Views

Author

Robert Price, Apr 18 2015

Keywords

Comments

a(4) is too large to display here. It has 731 digits and is the 2440th term in A122265.

Crossrefs

Programs

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