OFFSET
1,1
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..1000
Prime Curios!, 181
EXAMPLE
433 and 449 are 2 primes which are 1B1 and 1C1 in hexadecimal notation.
PROG
(Python)
from gmpy2 import digits
from sympy import isprime
A246872 = [2]
for n in range(1, 16**4):
....s1 = digits(n, 16)
....s2 = s1[::-1]
....for m in range(15):
........p1, p2 = int(s1+digits(m, 16)+s2, 16), int(s1+digits(m+1, 16)+s2, 16)
........if isprime(p1) and isprime(p2):
............A246872.append(p1)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Chai Wah Wu, Sep 06 2014
STATUS
approved