A121606 Indices n such that A018910[n] = (Fibonacci[n+3] + 2) are primes.
1, 2, 5, 11, 19, 37, 73, 85, 155, 193, 227, 233, 257, 785, 797, 1277, 2371, 2771, 4213, 9107
Offset: 1
Keywords
Programs
-
Mathematica
Do[f=Fibonacci[n+3]+2;If[PrimeQ[f],Print[n]],{n,1,3000}] Select[Range[10000],PrimeQ[Fibonacci[#+3]+2]&] (* Harvey P. Dale, Jul 01 2019 *)
Extensions
More terms from Harvey P. Dale, Jul 01 2019
Comments