A124121 Primes q which are the lesser of a double Wieferich prime pair. (List of known values of q in increasing order, without multiplicity.)
2, 3, 5, 83, 911, 2903
Offset: 1
Links
- Yuri F. Bilu, Catalan's Conjecture, Seminaire Bourbaki, (2002-2003).
- Michael Mossinghoff, Wieferich Prime Pairs, Barker Sequences, and Circulant Hadamard Matrices, as of Feb 12 2009.
- Eric Weisstein's World of Mathematics, Double Wieferich Prime Pair
- Wikipedia, Wieferich pair
Programs
-
PARI
/* The following (highly unoptimized) code misses the value q=5 (corresponding to a very large value of p) */ default(primelimit,1010000); forprime(q=1, default(primelimit), forprime(p=q+1, default(primelimit), Mod(p, q^2)^(q-1)-1 & next; Mod(q, p^2)^(p-1)-1 || print1( q", ") || break)) \\ M. F. Hasler, Oct 08 2011
Comments