A235161 Primes which have one or more occurrences of exactly nine different digits.
102345689, 102345697, 102345869, 102346789, 102346879, 102346897, 102346957, 102347689, 102348679, 102348769, 102349867, 102354689, 102354697, 102356489, 102356789, 102356987, 102358769, 102358967, 102364859, 102364879, 102365897, 102365947, 102368459
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..2000
Programs
-
PARI
s=[]; forprime(n=100000000, 102400000, if(#vecsort(eval(Vec(Str(n))),,8)==9, s=concat(s, n))); s
Comments