A244776 Prime numbers ending in the prime number 83.
83, 283, 383, 683, 883, 983, 1283, 1483, 1583, 1783, 2083, 2383, 2683, 3083, 3583, 4283, 4483, 4583, 4783, 5483, 5683, 5783, 6883, 6983, 7283, 7583, 7883, 8783, 9283, 9883, 10883, 11083, 11383, 11483, 11783, 12583, 12983, 13183, 13883, 14083, 14683
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
[n: n in PrimesUpTo(15000) | n mod 100 eq 83];
-
Mathematica
Select[Prime[Range[5, 6000]], Take[IntegerDigits[#], -2]=={8, 3} &]
-
PARI
select(x->(x % 100)==83, primes(2000)) \\ Michel Marcus, Jul 07 2014
Comments