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

A020172
Pseudoprimes to base 44.
1
9, 15, 45, 65, 117, 129, 215, 301, 369, 387, 585, 645, 703, 745, 1017, 1035, 1105, 1341, 1677, 1729, 1921, 1935, 1937, 1981, 2047, 2193, 2465, 2665, 2821, 3585, 3913, 4005, 4097, 4417, 4633, 5289, 6273, 6533, 6601, 6705, 7281, 7345, 8385, 8695, 8911, 9331
OFFSET
1,1
COMMENTS
Composite numbers n such that 44^(n-1) == 1 (mod n). - Michel Lagneau, Feb 18 2012
MATHEMATICA
base = 44; 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: A274757 A146789 A194946 * A020174 A020315 A020270
KEYWORD
nonn
STATUS
approved