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.

A257074 Primes in the 10th-order Fibonacci numbers A127194.

Original entry on oeis.org

19, 37, 73, 577, 1153, 588097, 1175617, 2350081, 18772993, 4877942342401, 40459828019985257473, 161680527238968327169, 323202386497090728961, 10317126837306838775329, 171065716870341976441855042753
Offset: 1

Views

Author

Robert Price, Apr 15 2015

Keywords

Comments

a(16) is too large to display here. It has 53 digits and is the 184th term in A127194.

Crossrefs

Programs

  • Mathematica
    a={1,1,1,1,1,1,1,1,1,1}; step=10; 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
    Select[With[{t=Table[1,{10}]},LinearRecurrence[t,t,400]],PrimeQ] (* Harvey P. Dale, Jan 17 2024 *)