A141855 Primes congruent to 8 mod 11.
19, 41, 107, 151, 173, 239, 283, 349, 503, 547, 569, 613, 701, 811, 877, 1009, 1031, 1097, 1163, 1229, 1361, 1427, 1471, 1493, 1559, 1669, 1801, 1823, 1867, 1889, 1933, 1999, 2087, 2131, 2153, 2351, 2417, 2549, 2593, 2659, 2791, 2857, 2879, 3011, 3121, 3187
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Cf. A142322.
Programs
-
Magma
[ p: p in PrimesUpTo(5000) | p mod 11 eq 8 ]; // Vincenzo Librandi, Apr 19 2011
-
Mathematica
Select[Range[19, 50000, 22], PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Jun 13 2011 *)
-
PARI
is(n)=isprime(n) && n%11==8 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 10n log n. - Charles R Greathouse IV, Jul 02 2016
Comments