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

A140537
Primes congruent to 17 or 193 mod 210.
1
17, 193, 227, 613, 647, 823, 857, 1033, 1277, 1453, 1487, 1663, 1697, 1873, 1907, 2083, 2293, 2503, 2713, 2957, 3167, 3343, 3797, 4007, 4217, 4603, 4637, 4813, 5023, 5233, 5443, 5477, 5653, 5897, 6073, 6317, 6703, 6737, 6947, 7333, 7577, 7753, 7963
OFFSET
1,1
LINKS
MATHEMATICA
mf[n_]:=Module[{x=Mod[n, 210]}, x==17||x==193]; Select[Prime[Range[1100]], mf] (* Harvey P. Dale, Feb 07 2011 *)
Select[Prime[Range[1100]], MemberQ[{17, 193}, Mod[#, 210]] &] (* Vincenzo Librandi, Aug 15 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(9000)|p mod 210 in {17, 193}]; // Vincenzo Librandi, Dec 18 2010
CROSSREFS
Cf. A000040.
Sequence in context: A021494 A300172 A160658 * A359698 A021434 A019316
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Entries checked by R. J. Mathar, Apr 25 2010
STATUS
approved