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