A353141 Near-Wieferich primes with abs(A) < 2.
3, 5, 7, 71, 379, 1093, 2659, 3511, 110057537, 47004625957, 76843523891
Offset: 1
Examples
The prime p = 110057537 satisfies 2^((p-1)/2) == +1 -p (mod p^2) and is therefore in the sequence.
Links
- R. Crandall, K. Dilcher and C. Pomerance, A search for Wieferich and Wilson primes, Mathematics of Computation 66 (1997), 433-449.
- U. Fries, PRPNet findlist for project WFS
- M. Goetz, WW by the numbers, PrimeGrid forum.
- J. Knauer and J. Richstein, The continuing search for Wieferich primes, Mathematics of Computation 74 (2005), 1559-1563.
- J. S. Nielsen, Check a WW find with PARI/GP, PrimeGrid forum.
- Reggie, Which near-finds are shown?, PrimeGrid forum (see Message 146701).
- PrimeGrid, WW Statistics
Programs
-
PARI
a258367(n) = abs(centerlift(Mod(2, n^2)^((n-1)/2))\/n) \\ after Charles R Greathouse IV in A258367 forprime(p=3, , if(a258367(p) < 2, print1(p, ", ")))
-
PARI
\\ see Nielsen link for code to check the A-value and +-1-type of a prime
Comments