Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #19 Sep 08 2022 08:45:35
%S 59,233,349,523,929,1103,1277,1451,1567,1741,1973,2089,2437,2843,3191,
%T 3307,3539,4003,4177,4409,4583,4931,5279,5569,5743,5801,6091,6323,
%U 6961,7019,7193,7309,7541,8179,8237,8353,8527,8933,9049,9281,9397,9629,9803,10093
%N Primes congruent to 1 mod 29.
%H Vincenzo Librandi, <a href="/A141977/b141977.txt">Table of n, a(n) for n = 1..1000</a>
%t Select[58Range[350] + 1, PrimeQ] (* _Vladimir Joseph Stephan Orlovsky_, Apr 06 2011 *)
%o (Magma) [ p: p in PrimesUpTo(11000) | p mod 29 eq 1 ]; // _Vincenzo Librandi_, Apr 07 2011
%o (PARI) forprime(p=2,1e4,if(p%29==1,print1(p", "))) \\ _Charles R Greathouse IV_, Apr 01 2013
%Y Cf. A000040, A124826, A248620.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_, Jul 11 2008