A141987 Primes congruent to 11 mod 29.
11, 127, 359, 823, 881, 997, 1171, 1229, 1693, 1867, 2099, 2273, 2389, 2447, 2621, 2969, 3259, 3433, 3491, 3607, 4013, 4129, 4651, 4999, 5231, 5347, 5521, 5869, 5927, 6043, 6101, 6217, 6449, 6971, 7841, 8363, 8537, 9001, 9059, 9349, 9697, 9871, 9929, 10103
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[ p: p in PrimesUpTo(11000) | p mod 29 eq 11 ]; // Vincenzo Librandi, Apr 07 2011
-
Mathematica
Select[Range[11,10000,29],PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 06 2011 *) Select[Prime[Range[1500]],Mod[#,29]==11&] (* Harvey P. Dale, Apr 29 2022 *)
-
PARI
is(n)=isprime(n) && n%29==11 \\ Charles R Greathouse IV, Jul 03 2016
Formula
a(n) ~ 28n log n. - Charles R Greathouse IV, Jul 03 2016