login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A279795
Numbers n such that F(n) and F(n-2) are both prime where F(n) = A000045(n).
4
5, 7, 13, 433, 571
OFFSET
1,1
COMMENTS
a(6) > 2904353. - Daniel Suteu, Dec 23 2016
Terms n of A001605 such that n-2 is also a term of A001605. Surprisingly, the first 4 terms minus 2, { 3, 5, 11, 431 }, are the first four terms of A101315 which also relates to simultaneously prime { m+2, F(m) and F(m)+2 }, but where F is a different function, m -> (m-1)^2 + 1. - M. F. Hasler, Dec 24 2016
Larger primes of the Fibonacci prime pairs in A073340. - Bobby Jacobs, Jan 18 2017
FORMULA
a(n) = A281087(n) + 2. - Bobby Jacobs, Jan 18 2017
EXAMPLE
13 is a term because Fibonacci(13) = 233 and Fibonacci(11) = 89 are both prime.
MATHEMATICA
Select[Range[10^4], Times @@ Boole@ Map[PrimeQ@ Fibonacci@ # &, {#, # - 2}] > 0 &] (* Michael De Vlieger, Jan 21 2017 *)
Flatten[Position[Partition[Fibonacci[Range[580]], 3, 1], _?(AllTrue[ {#[[1]], #[[3]]}, PrimeQ]&), 1, Heads->False]]+2 (* Harvey P. Dale, Oct 01 2021 *)
PROG
(PARI) isok(n) = isprime(fibonacci(n)) && isprime(fibonacci(n-2)); \\ Michel Marcus, Jan 14 2017
CROSSREFS
KEYWORD
more,nonn
AUTHOR
Altug Alkan, Dec 18 2016
STATUS
approved