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

A069109
Primes of the form F(k)-k where F(k) is the k-th Fibonacci number.
2
2, 13, 971, 121367, 317783, 3416454622906631, 3807901929474025356630904133903, 757791618667731139247631372099907
OFFSET
1,1
COMMENTS
a(9) is a 169-digit certified prime (Primo). - Rick L. Shepherd, Apr 26 2002
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..13
FORMULA
A065220 INTERSECT A000040. - R. J. Mathar, Apr 24 2017
a(n) = A065220(A270821(n)). - Amiram Eldar, Jun 04 2022
MATHEMATICA
Select[Table[Fibonacci[k] - k, {k, 1, 160}], PrimeQ] (* Amiram Eldar, Jun 04 2022 *)
PROG
(PARI) for(n=1, 4036, if(ispseudoprime(t=fibonacci(n)-n), print1(t", "))); \\ Charles R Greathouse IV, Feb 17 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Apr 06 2002
STATUS
approved