OFFSET
1,1
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
EXAMPLE
63 is a member as (6*3)/(6+3) = 2 > 1.
MATHEMATICA
pdsdQ[n_]:=Module[{idn=IntegerDigits[n], r}, r=Times@@idn/Total[idn]; IntegerQ[ r]&&r>1]; Select[Range[500], pdsdQ] (* Harvey P. Dale, Dec 22 2019 *)
PROG
(PARI) ok(n)={my(d=digits(n), p=vecprod(d), s=vecsum(d)); p > s && p%s == 0} \\ Andrew Howroyd, Sep 17 2024
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jun 26 2001
EXTENSIONS
Corrected and extended by Larry Reeves (larryr(AT)acm.org), Jun 29 2001
Offset changed by Andrew Howroyd, Sep 17 2024
STATUS
approved