OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..120
Blair Kelly, Fibonacci and Lucas Factorizations.
EXAMPLE
a(1)=12 because 12th Fibonacci number (i.e., 144) consists of 6 prime factors (i.e., 2*2*2*2*3*3).
MATHEMATICA
t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 6, AppendTo[t, n]], {n, 2, 100}]; t (* T. D. Noe, Mar 14 2014 *)
Position[Fibonacci[Range[550]], _?(PrimeOmega[#]==6&)]//Flatten (* Harvey P. Dale, Jun 12 2017 *)
PROG
(PARI) n=1; while(n<330, if(bigomega(fibonacci(n))==6, print1(n, ", ")); n++)
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Feb 19 2006
EXTENSIONS
More terms from Ryan Propper, May 22 2006
STATUS
approved