OFFSET
1,1
COMMENTS
Similar to Rhonda numbers (A099542) where the multiplicity of the prime factors is taken into account.
EXAMPLE
1584 = 2^4*3^2*11 and 1*5*8*4 = 160 = 10*(2+3+11).
MAPLE
with(numtheory): select(n->convert(convert(n, base, 10), `*`)=10*add(k, k=factorset(n)), [$1..120000]);
MATHEMATICA
Select[Range[2*10^5], Times @@ IntegerDigits[#] == 10 Total[FactorInteger[#][[All, 1]] ] &] (* Michael De Vlieger, Feb 15 2019 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Paolo P. Lava, Feb 06 2019
STATUS
approved