A244772 Prime numbers ending in the prime number 59.
59, 359, 659, 859, 1259, 1459, 1559, 1759, 2459, 2659, 3259, 3359, 3559, 3659, 4159, 4259, 4759, 5059, 5659, 6359, 6659, 6959, 7159, 7459, 7559, 7759, 8059, 9059, 9859, 10159, 10259, 10459, 10559, 10859, 11059, 11159, 11959, 12659, 12959, 13159, 13259
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in PrimesUpTo(14000) | n mod 100 eq 59];
-
Mathematica
Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={5, 9} &]
-
PARI
select(x->(x % 100)==59, primes(2000)) \\ Michel Marcus, Jul 07 2014
Comments