login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A020237
Strong pseudoprimes to base 11.
5
133, 793, 2047, 4577, 5041, 12403, 13333, 14521, 17711, 23377, 43213, 43739, 47611, 48283, 49601, 50737, 50997, 56057, 58969, 68137, 74089, 85879, 86347, 87913, 88831, 102173, 111055, 114211, 115231, 137149, 139231, 171601, 172369, 193249, 196555
OFFSET
1,1
LINKS
PROG
(PARI) /* insert A001262 code here */
isA020237(n)={
isStrongPsp(n, 11)
}
{
for(n=1, 10000000000,
if(isA020237(n), print(n) ; ) ;
) ;
} /* R. J. Mathar, Mar 07 2012 */
KEYWORD
nonn
STATUS
approved