OFFSET
1,1
COMMENTS
a(14) is too large to display here. It has 53 digits and is the 182nd term in A127193.
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 to OEIS Section Fi
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
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Price, Mar 31 2015
STATUS
approved