A235158 Primes which have one or more occurrences of exactly six different digits.
102359, 102367, 102397, 102437, 102497, 102539, 102547, 102563, 102587, 102593, 102643, 102647, 102653, 102673, 102679, 102763, 102769, 102793, 102859, 102953, 102967, 102983, 103289, 103457, 103529, 103549, 103567, 103657, 103687, 103769, 103867, 103967
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..2000
Programs
-
PARI
s=[]; forprime(n=100000, 105000, if(#vecsort(eval(Vec(Str(n))),,8)==6, s=concat(s, n))); s
Comments