A073444 Primes of the form n! - n - 1.
2, 19, 3628789, 479001587
Offset: 1
Keywords
Examples
a(1) = 4! - 4 - 1 = 19, a prime, so 19 is in this sequence (4 = A073443(1)).
Crossrefs
Cf. A073443 (corresponding n).
Programs
-
PARI
for(n=3,2000, p=n!-n-1; if(isprime(p),print1(p,",")))
Comments