OFFSET
1,1
COMMENTS
First 11460 terms are pandigital numbers (A050278).
Asymptotic density 1/2520 = 0.000396.... - Charles R Greathouse IV, Mar 11 2011
11460 terms up to 10^10, 299275 terms up to 10^11, 6224794 terms up to 10^12. - Charles R Greathouse IV, Mar 11 2011
LINKS
David A. Corneth, Table of n, a(n) for n = 1..11460 (terms <= 10^10)
MATHEMATICA
numdig = 8; Select[Range[1245983760], Length[(u = Union[Select[IntegerDigits[#], #1 > 1 &]])] >= numdig && Plus @@ (Boole@Divisible[#, u]) >= numdig &] (* Amiram Eldar, Aug 30 2020 *)
PROG
(PARI) s(n) = my(res=Set(digits(n))); select(x->x>1, res)
is(n) = my(d=s(n)); if(#d < 8, return(0)); sum(i=1, #d, n%d[i]==0) >= 8 \\ David A. Corneth, Aug 30 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zak Seidov, Mar 11 2011
STATUS
approved