OFFSET
1,1
COMMENTS
All 1- and 2-digit reversible primes (A007500) are trivially in this sequence. No primes from A056709 are in this sequence. Clearly all absolute primes (A003459) are sortable primes but not all sortable primes are absolute primes. - Alonso del Arte, Oct 08 2013
LINKS
Francis J. McDonnell, Table of n, a(n) for n = 1..10000
Francis J. McDonnell, Java Program
EXAMPLE
131 is prime and after sorting its digits into nonincreasing order we obtain 311, which is prime.
163 is in the sequence because its digits sorted in decreasing order give 631, which is prime. (Note that this is not a reversible prime, since 361 = 19^2.)
MATHEMATICA
Select[Prime[Range[200]], PrimeQ[FromDigits[-Sort[-IntegerDigits[#]]]] &] (* T. D. Noe, Apr 17 2012 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Francis J. McDonnell, Apr 17 2012
STATUS
approved