OFFSET
1,1
COMMENTS
In base ten these numbers can be said to have a prime twin made up of the same digits.
LINKS
Andreas Boe, Table of n, a(n) for n = 1..14440
EXAMPLE
170 -> 017 (forbidden), 071 (forbidden), 107 (prime), 170 (even), 701 (prime), 710 (even) -> conclusion: Two primes numbers.
MATHEMATICA
Select[Range[500], Count[FromDigits/@Select[Permutations[IntegerDigits[#]], #[[1]] != 0&], _?PrimeQ]==2&] (* Harvey P. Dale, Oct 23 2018 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Andreas Boe, Aug 23 2014
STATUS
approved