OFFSET
1,1
COMMENTS
There are exactly 141 such numbers, no one of them being prime.
The sequence contains 15 semiprimes: 14979 = 3 * 4993, 19167 = 3 * 6389, 20499 = 3 * 6833, 21657 = 3 * 7219, 36489 = 3 * 12163,..., 98337 = 3 * 32779, and 98823 = 3*32941. - Jonathan Vos Post, Dec 31 2010
LINKS
Jinyuan Wang, Table of n, a(n) for n = 1..141
EXAMPLE
20247 is in the sequence because 20247*74202 = 1502367894 contains ten different digits;
451410 is in the sequence because 451410*14154 = 6389257140 contains ten different digits.
MAPLE
with(numtheory): U:=array(1..50) :c:=0:for i from 5000 to 1000000 do: s1:=0:ll:=length(i):for
q from 0 to ll do:x:=iquo(i, 10^q):y:=irem(x, 10):s1:=s1+y*10^(ll-1-q): od:n:=i*s1:l:=length(n):if l=10 then n0:=n:s:=0:for m from 1 to l do:q:=n0:u:=irem(q, 10):v:=iquo(q, 10):n0:=v
: U[m]:=u:od: B:={0, 1, 2, 3, 4, 5, 6, 7, 8, 9}: A:=convert(U, set):z:=nops(A):else fi:
if A intersect B = B and z=10 and l=10 then c:=c+1:printf(`%d, `, i): else fi:od:
print(c):
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Michel Lagneau, Dec 30 2010
EXTENSIONS
Confirmed terms 14979-45765 and also that there are exactly 141 terms. - John W. Layman, Dec 30 2010
STATUS
approved