OFFSET
1,1
EXAMPLE
a(3) = 24157817 because 24157817 is the smallest Fibonacci number with a prime index (that is, 37) which has 3 prime factors (24157817 = 73*149*2221).
MATHEMATICA
Transpose[Flatten[Table[Select[{#, PrimeOmega[#]}&/@Fibonacci[Prime[Range[50]]], Last[#]==n&, 1], {n, 5}], 1]][[1]] (* To generate the first 6 terms, change 50 to 100 inside Range and change 5 to 6 for the upper limit of n. *) (* Harvey P. Dale, Jun 20 2013 *)
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
Shyam Sunder Gupta, Feb 18 2006
EXTENSIONS
Definition and example clarified by Harvey P. Dale, Jun 20 2013
STATUS
approved