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

A141897
Primes congruent to 19 mod 21.
2
19, 61, 103, 229, 271, 313, 397, 439, 523, 607, 691, 733, 859, 1069, 1153, 1237, 1279, 1321, 1447, 1489, 1531, 1657, 1699, 1741, 1783, 1867, 1951, 1993, 2161, 2203, 2287, 2371, 2539, 2707, 2749, 2791, 2833, 2917, 3001, 3169, 3253, 3463, 3547, 3631, 3673
OFFSET
1,1
LINKS
FORMULA
a(n) ~ 12n log n. - Charles R Greathouse IV, Jul 02 2016
MATHEMATICA
Select[Range[19, 5000, 21], PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 04 2011 *)
PROG
(Magma) [ p: p in PrimesUpTo(5000) | p mod 21 eq 19 ]; // Vincenzo Librandi, Apr 05 2011
(PARI) is(n)=isprime(n) && n%21==19 \\ Charles R Greathouse IV, Jul 02 2016
CROSSREFS
Sequence in context: A211145 A338990 A158521 * A031384 A048890 A127854
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
STATUS
approved