A141977 Primes congruent to 1 mod 29.
59, 233, 349, 523, 929, 1103, 1277, 1451, 1567, 1741, 1973, 2089, 2437, 2843, 3191, 3307, 3539, 4003, 4177, 4409, 4583, 4931, 5279, 5569, 5743, 5801, 6091, 6323, 6961, 7019, 7193, 7309, 7541, 8179, 8237, 8353, 8527, 8933, 9049, 9281, 9397, 9629, 9803, 10093
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 1 ]; // Vincenzo Librandi, Apr 07 2011
-
Mathematica
Select[58Range[350] + 1, PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Apr 06 2011 *)
-
PARI
forprime(p=2,1e4,if(p%29==1,print1(p", "))) \\ Charles R Greathouse IV, Apr 01 2013