OFFSET
1,2
COMMENTS
A001605 is a subsequence. 2036 and 2276 are also terms. - Chai Wah Wu, May 19 2020
EXAMPLE
The 12th Fibonacci number is 144. The largest prime dividing 144 is 3 and 3 is the 4th Fibonacci number. So 12 is in the sequence.
PROG
(PARI) isfib(n) = my(k=n^2); k+=(k+1)<<2; issquare(k) || (n>0 && issquare(k-8));
isok(n) = my(f=fibonacci(n)); (f==1) || isfib(vecmax(factor(f)[, 1])); \\ Michel Marcus, Sep 06 2019
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Leroy Quet, Feb 26 2006
EXTENSIONS
More terms from Diana L. Mecum, Jun 02 2007
a(28)-a(40) from Michel Marcus, Sep 06 2019
a(41)-a(46) from Chai Wah Wu, May 19 2020
STATUS
approved