A329223 Poulet numbers (Fermat pseudoprimes to base 2) that are congruent to either 3 or 27 (mod 80) and each prime factor is congruent to 3 mod 80.
51962615262396907, 330468624532072027, 2255490055253468347, 18436227497407654507
Offset: 1
Examples
51962615262396907 is a term because it is a Fermat pseudoprime to base 2 and it is congruent to 27 (mod 80) and all of its prime factors (643, 154723, 522306163) are congruent to 3 mod 80.
Links
- H. W. Lenstra, and Carl Pomerance, Remarks on Agrawal's conjecture, American Institute of Mathematics (2003), pp. 30-32.
- Tomáš Váňa, Agrawal's Conjecture and Carmichael Numbers, student scientific conference, pp. 13-22.
- Wikipedia, Agrawal's conjecture
Crossrefs
Cf. A001567.
Programs
-
PARI
isok(n) = ((n%80==3) || (n%80==27)) && (Mod(2, n)^(n-1) == 1) || return(0); my(f=factor(n)[,1]); (#f > 1) && (#select(p->p%80==3, f) == #f);
Comments