OFFSET
1,1
COMMENTS
No more terms below 1427.
The corresponding number of prime factors is 1, 1, 1, 2, 2, 2, 3, 2, 4, 1, 1, 2, 5, ...
EXAMPLE
3 is in the sequence since 3 and 5 are twin primes, and F(3) = 2 and F(5) = 5 are both primes, thus having the same number of prime factors.
71 is in the sequence since 71 and 73 are twin primes, and F(71) and F(73) both have 2 prime factors.
MATHEMATICA
s={}; Do[If[PrimeQ[n] && PrimeQ[n+2] && PrimeOmega[Fibonacci[n]] == PrimeOmega[ Fibonacci[n+2]], AppendTo[s, n]], {n, 1, 200}]; s
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Oct 14 2019
STATUS
approved