cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A281087 Numbers k such that Fibonacci(k) and Fibonacci(k+2) are both prime.

Original entry on oeis.org

3, 5, 11, 431, 569
Offset: 1

Views

Author

Bobby Jacobs, Jan 14 2017

Keywords

Comments

Smaller primes of the Fibonacci prime pairs in A073340.
See the comment to A073340 - Harvey P. Dale, Jan 30 2025

Examples

			11 is in the sequence because Fibonacci(11) = 89 and Fibonacci(13) = 233 are both prime.
		

Crossrefs

First differs from A101315 at a(5).

Programs

  • 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 *)

Formula

a(n) = A279795(n) - 2.
a(n) = A073340(2n-1).