login
A038368
n is divisible by |(product of digits) - (sum of digits)|.
1
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 30, 31, 32, 33, 35, 36, 40, 41, 42, 50, 51, 60, 61, 63, 68, 70, 71, 80, 81, 90, 91, 100, 102, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 136, 140
OFFSET
1,1
LINKS
MATHEMATICA
pmsQ[n_]:=Module[{idn=IntegerDigits[n], x}, x=Times@@idn-Total[idn]; x!=0 && Divisible[n, x]]; Select[Range[200], pmsQ] (* Harvey P. Dale, Oct 11 2011 *)
CROSSREFS
Sequence in context: A174140 A357929 A322322 * A062997 A110429 A359841
KEYWORD
easy,nonn,base
AUTHOR
STATUS
approved