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

A064738
Numbers k such that k! + Fibonacci(k) is prime.
1
1, 2, 62, 71, 227, 778, 809, 1753, 15329
OFFSET
1,2
COMMENTS
The three values 62, 71 and 227 were certified prime with Primo.
MATHEMATICA
Do[m = n; If[PrimeQ[n! + Fibonacci[n]], Print[n]], {n, 0, 10^3} ]
Do[If[PrimeQ[n! + Fibonacci[n]], Print[n]], {n, 1, 1800}] (* Ryan Propper, Nov 05 2005 *)
PROG
(PARI) for(n=1, 300, if(isprime(n!+fibonacci(n)), print(n)))
CROSSREFS
Sequence in context: A094478 A273090 A106133 * A067825 A239417 A296361
KEYWORD
nonn,more
AUTHOR
Jason Earls, Oct 17 2001
EXTENSIONS
More terms from Robert G. Wilson v, Oct 18 2001
a(8) from Ryan Propper, Nov 05 2005
a(9) from Michael S. Branicky, Sep 21 2024
STATUS
approved