A273471 Primes p such that at least one of 1093*p or 1093*p^2 is a Poulet number, i.e., a term of A001567.
1093, 4733, 21841, 503413, 1948129, 112901153, 23140471537, 467811806281, 4093204977277417, 8861085190774909, 556338525912325157, 86977595801949844993, 275700717951546566946854497, 3194753987813988499397428643895659569
Offset: 1
Links
- G. P. Michon, Wieferich primes and some of their Poulet multiples
- Factordb, Factorization of 2^1092-1
Programs
-
PARI
forprime(p=1, , if(Mod(2, 1093*p)^(1093*p-1)==1 || Mod(2, 1093*p^2)^(1093*p^2-1)==1, print1(p, ", ")))
Comments