A166864 Primes p that divide n! - 1 for some n > 1 other than p-2.
17, 23, 29, 31, 53, 59, 61, 67, 71, 73, 83, 89, 97, 103, 107, 109, 137, 139, 149, 151, 167, 193, 199, 211, 223, 227, 233, 239, 251, 271, 277, 283, 307, 311, 331, 359, 379, 389, 397, 401, 419, 431, 439, 449, 457, 461, 463, 467, 479, 487, 499, 503, 521, 547, 557
Offset: 1
Keywords
Examples
17 is included in the sequence since 17 divides 5! - 1 = 119. 19 is not included in the sequence since the only n for which 19 divides n! - 1 is n = 17.
Links
- Eric Weisstein's World of Mathematics, Wilson's Theorem
Programs
-
PARI
isA166864(n) = {local(r);r=0;for(i=2,n-3,if((i!-1)%n==0,r=1));r}
Comments