A258944 Odd primes p that divide 2! + 3! + ... + (p-1)!.
31, 373, 6855730873
Offset: 1
Links
- Vladica Andrejic and Milos Tatarevic, Searching for a counterexample of Kurepa's Conjecture, arXiv:1409.0800 [math.NT], 2014.
Programs
-
PARI
forprime(p=3, 1e11, if(sum(k=2, p-1, k!) % p==0, print1(p, ", "))); \\ Altug Alkan, Nov 08 2015
Comments