OFFSET
1,1
COMMENTS
Why are even values rare? (First one is 82.)
LINKS
Michel Marcus, Table of n, a(n) for n = 1..225
EXAMPLE
F(15) = 610 = 2*5*61 and F(30) = 832040 = 2^3*5*11*31*61 hence 15 is in the sequence.
MATHEMATICA
Select[Range[3, 200], FactorInteger[Fibonacci[#]][[-1, 1]]==FactorInteger[ Fibonacci[2#]][[-1, 1]]&] (* Harvey P. Dale, Sep 04 2018 *)
PROG
(PARI) f(n) = vecmax(factor(fibonacci(n))[, 1]); \\ A060385
isok(m) = (m>2) && (f(m) == f(2*m)); \\ Michel Marcus, Feb 18 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Sep 17 2002
EXTENSIONS
More terms from Don Reble, Sep 20 2002
STATUS
approved