login
A235160
Primes which have one or more occurrences of exactly eight different digits.
4
10234589, 10234759, 10234897, 10235647, 10235749, 10235867, 10236547, 10236857, 10237849, 10238467, 10238597, 10238647, 10238759, 10238957, 10239487, 10239587, 10239847, 10243567, 10243657, 10243759, 10243769, 10243867, 10243897, 10245397
OFFSET
1,1
COMMENTS
The first term having a repeated digit is 100234657.
LINKS
MATHEMATICA
Select[Prime[Range[664580, 68*10^4]], Count[DigitCount[#], 0]==2&] (* Harvey P. Dale, Apr 05 2019 *)
PROG
(PARI) s=[]; forprime(n=10000000, 10250000, if(#vecsort(eval(Vec(Str(n))), , 8)==8, s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 04 2014
STATUS
approved