OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..71
Blair Kelly, Fibonacci and Lucas Factorizations.
EXAMPLE
a(1)=36 because the 36th Fibonacci number (i.e., 14930352) consists of 10 prime factors (i.e., 2*2*2*2*3*3*3*17*19*107).
MATHEMATICA
t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 10, AppendTo[t, n]], {n, 2, 200}]; t (* T. D. Noe, Mar 14 2014 *)
Select[Range[1000], PrimeOmega[Fibonacci[#]]==10&] (* Harvey P. Dale, Jul 24 2021 *)
PROG
(PARI) n=1; while(n<305, if(bigomega(fibonacci(n))==10, print1(n, ", ")); n++)
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Feb 19 2006
EXTENSIONS
More terms from Ryan Propper, May 24 2006
STATUS
approved