|
Search: id:A064738
|
|
|
| A064738 |
|
Numbers n such that n! + Fibonacci(n) is prime. |
|
+0 2
|
| |
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
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}] (Propper)
|
|
PROGRAM
|
(PARI) for(n=1, 300, if(isprime(n!+fibonacci(n)), print(n)))
|
|
CROSSREFS
|
Cf. A005478, A000142.
Sequence in context: A059004 A065589 A094478 this_sequence A067825 A091817 A024238
Adjacent sequences: A064735 A064736 A064737 this_sequence A064739 A064740 A064741
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Jason Earls (zevi_35711(AT)yahoo.com), Oct 17 2001
|
|
EXTENSIONS
|
More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Oct 18 2001
1753 from Ryan Propper (rpropper(AT)stanford.edu), Nov 05 2005
|
|
|
Search completed in 0.002 seconds
|