OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..56
Blair Kelly, Fibonacci and Lucas Factorizations.
EXAMPLE
a(1)=176 because 176th Fibonacci number (i.e. 2706074082469569338358691163510069157) consists of 12 distinct prime factors (i.e. 3 * 7 * 43 * 47 * 89 * 199 * 263 * 307 * 881 * 967 * 93058241 * 56241856)
MATHEMATICA
Flatten[Position[Fibonacci[Range[1110]], _?(PrimeNu[#]==12&)]] (* Harvey P. Dale, Jan 17 2015 *)
PROG
(PARI) n=1; while(n<320, if(omega(fibonacci(n))==12, print1(n, ", ")); n++)
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
Shyam Sunder Gupta, Feb 19 2006
EXTENSIONS
More terms from Ryan Propper, Apr 26 2006
a(42)-a(49) from Max Alekseyev, Aug 17 2013
a(50)-a(51) from Amiram Eldar, Oct 14 2019
STATUS
approved