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

A020143
Pseudoprimes to base 15.
1
14, 341, 742, 946, 1477, 1541, 1687, 1729, 1891, 1921, 2821, 3133, 3277, 4187, 6541, 6601, 7471, 8701, 8911, 9073, 10279, 10649, 12871, 14041, 14701, 15409, 15841, 16841, 19201, 20017, 24521, 25313, 25546, 28063, 29341, 30889, 31021, 38963, 41041
OFFSET
1,1
COMMENTS
Composite numbers n such that 15^(n-1) == 1 (mod n).
MATHEMATICA
base = 15; 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: A278194 A035273 A239783 * A161927 A253457 A239784
KEYWORD
nonn
STATUS
approved