OFFSET
1,2
COMMENTS
I believe a(n) ~ kn log n where k = 1/P(4) = 1/A085964, coming from numbers of the form p^4*q containing all ten decimal digits. - Charles R Greathouse IV, Feb 23 2017
LINKS
R. Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
a(2) = 13: #{1,3} = #{1,13};
a(26) = 169: #{1,6,9} = #{1,13,169};
a(74) = 1027: #{0,1,2,7} = #{1,13,79,1027};
a(241) = 2197: #{1,2,7,9} = #{1,13,169,2197};
a(3537) = 28561: #{1,2,5,6,8} = #{1,13,169,2197,28561}.
MATHEMATICA
Select[Range[1000], DivisorSigma[0, #]==Length[Union[IntegerDigits[#]]]&] (* Harvey P. Dale, May 20 2011 *)
PROG
(PARI) is(n)=numdiv(n)==#Set(digits(n)) \\ Charles R Greathouse IV, Feb 23 2017
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Aug 09 2007
STATUS
approved