A141851 Primes congruent to 4 mod 11.
37, 59, 103, 191, 257, 367, 389, 433, 499, 521, 587, 631, 653, 719, 829, 983, 1049, 1093, 1181, 1291, 1423, 1489, 1511, 1621, 1709, 1753, 1907, 1951, 1973, 2017, 2039, 2083, 2237, 2281, 2347, 2633, 2677, 2699, 2897, 2963, 3271, 3359, 3469, 3491, 3557, 3623
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(5000) | p mod 11 eq 4 ]; // Vincenzo Librandi, Apr 19 2011
-
Mathematica
Select[Range[4,10000,11],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, May 18 2011 *)
-
PARI
is(n)=isprime(n) && n%11==4 \\ Charles R Greathouse IV, Jul 02 2016
Formula
a(n) ~ 10n log n. - Charles R Greathouse IV, Jul 02 2016
Comments