A134966 Primes that use all of the prime digits 2,3,5,7 exactly once.
2357, 2753, 3257, 3527, 5237, 5273, 7253, 7523
Offset: 1
Programs
-
Mathematica
Select[FromDigits/@Permutations[{2,3,5,7}],PrimeQ] (* Harvey P. Dale, Jul 04 2013 *)
Comments