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

A020174
Pseudoprimes to base 46.
1
9, 15, 45, 133, 141, 145, 235, 261, 341, 365, 423, 561, 657, 703, 705, 721, 763, 781, 949, 1105, 1305, 1417, 1551, 1645, 1729, 1885, 1891, 1957, 1991, 2071, 2115, 2117, 2201, 2465, 2701, 2821, 3201, 3285, 4033, 4089, 4187, 4371, 4465, 4681, 5365, 5611, 5781
OFFSET
1,1
COMMENTS
Composite numbers n such that 46^(n-1) == 1 (mod n). - Michel Lagneau, Feb 18 2012
MATHEMATICA
base = 46; 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: A146789 A194946 A020172 * A020315 A020270 A020272
KEYWORD
nonn
STATUS
approved