A257228 Primes in the 10th-order Fibonacci numbers A122265.
2, 3876345660966505581780035851822613413637045687942554538584103751904155528656612320450718024564637501177857, 15784273697726525594915158437704910106795669967932151790483411869827615323130147795459165734845011296559523773
Offset: 1
Keywords
Links
- Tony D. Noe and Jonathan Vos Post, Primes in Fibonacci n-step and Lucas n-step Sequences, J. of Integer Sequences, Vol. 8 (2005), Article 05.4.4.
- OEIS Wiki, Index of Prime Fibonacci Numbers and Variants
- OEIS Wiki, Index to OEIS Section Fi
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
Comments