OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={2, 9} &]
Select[Prime[Range[6000]], Mod[#, 100]==29&] (* Harvey P. Dale, Oct 05 2021 *)
PROG
(Magma) [n: n in PrimesUpTo(16000) | n mod 100 eq 29];
(PARI) select(x->(x % 100)==29, primes(2000)) \\ Michel Marcus, Jul 06 2014
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Vincenzo Librandi, Jul 06 2014
STATUS
approved