OFFSET
1,1
COMMENTS
1811, 1933, 1997, 2069, 2087, 2203, 2221, 2311, 2663, 2713, 3631, 4157, 4651, 5107, 6701, 7211, 8123 are also terms (from data in Kelly link). - Chai Wah Wu, Nov 11 2019
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..83
Blair Kelly, Fibonacci and Lucas Factorizations.
FORMULA
{n: A038575(n)=3}. [R. J. Mathar, Jun 08 2010]
EXAMPLE
a(2)=15 because 15th Fibonacci number (i.e., 610) consists of 3 prime factors (i.e., 2*5*61).
MATHEMATICA
t = {}; Do[f = FactorInteger[Fibonacci[n]]; If[Total[Transpose[f][[2]]] == 3, AppendTo[t, n]], {n, 2, 100}]; t (* T. D. Noe, Mar 14 2014 *)
Flatten[Position[Fibonacci[Range[700]], _?(PrimeOmega[#]==3&)]] (* Harvey P. Dale, Feb 15 2015 *)
PROG
(PARI) n=1; while(n<340, if(bigomega(fibonacci(n))==3, print1(n, ", ")); n++)
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Feb 19 2006
EXTENSIONS
More terms from Ryan Propper, May 22 2006
STATUS
approved