A244775 Prime numbers ending in the prime number 79.
79, 179, 379, 479, 1279, 1579, 1879, 1979, 2179, 2579, 2879, 3079, 3779, 4079, 4679, 5179, 5279, 5479, 5779, 5879, 6079, 6379, 6679, 6779, 7079, 7879, 8179, 8779, 9479, 9679, 10079, 10979, 11279, 11579, 11779, 12379, 12479, 12979, 13679, 13879
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 79];
-
Mathematica
Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={7, 9} &] Select[Prime[Range[2000]],Mod[#,100]==79&] (* Harvey P. Dale, Nov 29 2017 *)
-
PARI
select(x->(x % 100)==79, primes(2000)) \\ Michel Marcus, Jul 07 2014
Comments