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”).

A163158
Primes of the form f^2-2, where f is a Fibonacci number.
1
2, 7, 23, 167, 439, 3023, 7919, 54287, 974167, 2550407, 32522920134767, 3372041405099481407, 9839618880490124200692486211717007, 724995932728680612729658820311719934835368079
OFFSET
1,1
COMMENTS
A basic heuristic suggests that this sequence is infinite with about k * log_phi(n) members below n.
Indices of associated Fibonacci numbers are 3, 4, 5, 7, 8, 10, 11, 13, 16, 17, 34, 46, 83, 109, 113, 158, 181, 203, 350, 490, 491, 565, 1024, 1114, 2800, 4222, 4847, 4961, 11507, 12554, ...
EXAMPLE
2^2-2=2, 3^2-2=7, 5^2-2=23
MATHEMATICA
f[n_]:=Fibonacci[n]^2-2; lst={}; Do[If[PrimeQ[f[n]], AppendTo[lst, f[n]]], {n, 6!}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Comments from Charles R Greathouse IV, Nov 09 2009
STATUS
approved