A163158 Primes of the form f^2-2, where f is a Fibonacci number.
2, 7, 23, 167, 439, 3023, 7919, 54287, 974167, 2550407, 32522920134767, 3372041405099481407, 9839618880490124200692486211717007, 724995932728680612729658820311719934835368079
Offset: 1
Keywords
Examples
2^2-2=2, 3^2-2=7, 5^2-2=23
Programs
-
Mathematica
f[n_]:=Fibonacci[n]^2-2; lst={};Do[If[PrimeQ[f[n]],AppendTo[lst,f[n]]],{n,6!}];lst
Extensions
Comments from Charles R Greathouse IV, Nov 09 2009
Comments