OFFSET
1,1
COMMENTS
Smaller primes of the Fibonacci prime pairs in A073340.
See the comment to A073340 - Harvey P. Dale, Jan 30 2025
LINKS
J. B. Cosgrave and K. Dilcher, Pairs of reciprocal quadratic congruences involving primes, Fig. Quart. 51 (2) (2013) 98-111
EXAMPLE
11 is in the sequence because Fibonacci(11) = 89 and Fibonacci(13) = 233 are both prime.
MATHEMATICA
Select[Range[600], PrimeQ[Fibonacci[#]] && PrimeQ[Fibonacci[#+2]] &] (* Stefano Spezia, Nov 15 2024 *)
SequencePosition[Table[If[PrimeQ[Fibonacci[n]], 1, 0], {n, 600}], {1, _, 1}][[;; , 1]] (* Harvey P. Dale, Jan 30 2025 *)
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Bobby Jacobs, Jan 14 2017
STATUS
approved