OFFSET
1,1
COMMENTS
Subsequence of A001567.
The least term that is divisible by both 1093 and 3511 is a(799) = 7015325908501 = 937 * 1093 * 1951 * 3511. - Amiram Eldar, May 05 2022
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
PrimeGrid, Subproject status.
EXAMPLE
3581761 = 29 * 113 * 1093, so it is a base-2 pseudoprime divisible by the Wieferich prime 1093 and is squarefree.
PROG
(PARI) /* The following program is valid up to the current search bound for Wieferich primes, about 10^19 as of May 03 2022 (cf. PrimeGrid); the program may miss terms above that bound if there is another Wieferich prime */
forcomposite(c=1, , if(Mod(2, c)^(c-1)==1, if(Mod(c, 1093)==0 || Mod(c, 3511)==0, if(issquarefree(c), print1(c, ", ")))))
CROSSREFS
KEYWORD
nonn
AUTHOR
Felix Fröhlich, May 01 2022
STATUS
approved