A064759 Numbers k such that k! - Fibonacci(k) is prime.
11, 13, 178, 7822
Offset: 1
Crossrefs
Cf. A064738.
Programs
-
PARI
for(n=1,300, if(isprime(n!-fibonacci(n)),print(n)))
Extensions
a(4) from Ryan Propper, Dec 30 2006
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
for(n=1,300, if(isprime(n!-fibonacci(n)),print(n)))
Comments