How many positive integers are equal to 12 times the sum of their digits?
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.
Given an n -digit number k , 12 times the sum of k 's digits is as most 1 2 ⋅ 9 n = 1 0 8 n . If k is equal to 12 times the sum of k 's digits, then k ≤ 1 0 8 n . We have n = ⌊ lo g 1 0 ( k ) , so we can solve this inequality to find n ≤ 3 .
Therefore, the only number equal to 12 times the sum of its digits is 1 0 8 , so the answer is 1 .