Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #13 Sep 08 2022 08:45:35
%S 73,131,421,479,653,769,827,1117,1291,1523,1697,1871,1987,2161,2393,
%T 2683,2741,2857,3089,3727,4133,4423,4481,4597,5003,5119,5351,5641,
%U 6047,6163,6221,6337,6569,6917,7207,8599,8831,9643,9817,10223,10513,10687,10861,11093
%N Primes congruent to 15 mod 29.
%H Vincenzo Librandi, <a href="/A141991/b141991.txt">Table of n, a(n) for n = 1..1000</a>
%F a(n) ~ 28n log n. - _Charles R Greathouse IV_, Jul 03 2016
%t Select[Prime[Range[2000]],Mod[#,29]==15&] (* _Harvey P. Dale_, Jan 11 2011 *)
%o (Magma) [p: p in PrimesUpTo(12000) | p mod 29 eq 15 ]; // _Vincenzo Librandi_, Aug 17 2012
%o (PARI) is(n)=isprime(n) && n%29==15 \\ _Charles R Greathouse IV_, Jul 03 2016
%Y Cf. A000040.
%K nonn,easy
%O 1,1
%A _N. J. A. Sloane_, Jul 11 2008