%I #8 Apr 19 2015 01:01:48
%S 12,13,14,17,18,27,28,29,32,50,73,75,76,81,105,184,213,813,896,1553,
%T 4132,5661,5787,7896,8726,9225,9345,11332,11391,12627,13163,14173,
%U 15900,17772,17827,20847,21034,25607,94510,98297,101251,127488,138108,188706
%N Indices of primes in the 10th-order Fibonacci number sequence, A127194.
%C a(45) > 2*10^5.
%H Tony D. Noe and Jonathan Vos Post, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL8/Noe/noe5.html">Primes in Fibonacci n-step and Lucas n-step Sequences</a>, J. of Integer Sequences, Vol. 8 (2005), Article 05.4.4.
%H OEIS Wiki, <a href="https://oeis.org/wiki/Index_of_Fibonacci_Numbers_and_Variants">Index of Prime Fibonacci Numbers and Variants</a>
%H OEIS Wiki, <a href="http://oeis.org/wiki/Index_to_OEIS:_Section_Fi">Index to OEIS Section Fi</a>
%t a={1,1,1,1,1,1,1,1,1,1}; step=10; lst={}; For[n=step+1,n<=1000,n++, sum=Plus@@a; If[PrimeQ[sum], AppendTo[lst,n]]; a=RotateLeft[a]; a[[step]]=sum]; lst
%Y Cf. A127194, A257074.
%K nonn
%O 1,1
%A _Robert Price_, Apr 15 2015