A088884 Primes which when concatenated with their reverse and decremented by 2 yield a new prime.
3, 5, 11, 53, 107, 131, 149, 167, 179, 191, 311, 317, 389, 503, 599, 947, 971, 1049, 1061, 1097, 1187, 1223, 1259, 1427, 1439, 1523, 1571, 1583, 1697, 1721, 1787, 1811, 1871, 1913, 1931, 1949, 3089, 3119, 3191, 3209, 3299, 3449, 3617, 3671, 3677, 3761
Offset: 1
Examples
53 is a term because (i) 53 is prime and (ii) when 53 is concatenated with its reverse (35) - 2, the result (5333) is prime.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[600]],PrimeQ[FromDigits[Join[IntegerDigits[#], Reverse[ IntegerDigits[ #]]]]- 2]&] (* Harvey P. Dale, Apr 06 2017 *)
Comments