What is the sum of all positive integers less than 100 that have the product of their digits equal to 4?
Details and assumptions
Clarification: The empty product (product of 0 numbers) is defined to be 1. The product of a number is the number itself.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Numbers less than 100 have either 1 digit or 2 digits. The number 4 is the only 1 -digit number with its product of digits equal to 4 . If we have a two digit number, the digits must either both be 2 , in which case we have the number 2 2 , or the digits are 1 and 4 , in which case we have the numbers 1 4 and 4 1 . The sum of these numbers is 4 + 2 2 + 1 4 + 4 1 = 8 1 .