OFFSET
1,3
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
1288 is a member since 1288 and its digital product 1*2*8*8 = 128 have the same digit set {1,2,8}.
MATHEMATICA
Select[Range[0, 8000], Union[IntegerDigits[Times@@IntegerDigits[#]]] == Union[ IntegerDigits[#]]&] (* Harvey P. Dale, Aug 05 2018 *)
PROG
(Magma) [n: n in [0..100000] | Set(Intseq(n)) eq Set(Intseq(&*Intseq(n)))]
(PARI) print1(0, ", "); for(n=1, 10^4, d=digits(n); p=prod(i=1, #d, d[i]); if(vecsort(digits(p), , 8)==vecsort(d, , 8), print1(n, ", "))) \\ Derek Orr, Nov 05 2014
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Jaroslav Krizek, Oct 31 2014
STATUS
approved