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”).

A020199
Pseudoprimes to base 71.
1
9, 10, 14, 15, 21, 35, 45, 63, 70, 105, 231, 315, 370, 435, 561, 703, 1035, 1105, 1387, 1729, 1921, 2071, 2209, 2321, 2465, 2701, 2821, 2871, 3290, 4005, 4033, 4431, 5565, 6541, 6601, 7345, 7957, 8295, 8365, 8695, 8911, 9637, 9730, 9809, 10349, 10585
OFFSET
1,1
COMMENTS
Composite numbers n such that 71^(n-1) == 1 (mod n).
MATHEMATICA
base = 71; t = {}; n = 1; While[Length[t] < 100, n++; If[! PrimeQ[n] && PowerMod[base, n-1, n] == 1, AppendTo[t, n]]]; t (* T. D. Noe, Feb 21 2012 *)
CROSSREFS
Cf. A001567 (pseudoprimes to base 2).
Sequence in context: A169870 A261614 A088710 * A227943 A114844 A194593
KEYWORD
nonn
STATUS
approved