How many different integers can be expressed as the sum of three distinct members from the set ? Try to find a creative way to solve this!
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.
Note that the sum must be divisible by three, because the numbers are all 1 ( m o d 3 ) . The smallest possible sum is 1 + 4 + 7 = 1 2 , and the largest is 1 3 + 1 6 + 1 9 = 4 8 . Between 1 2 and 4 8 inclusive, there are 1 3 integers divisible by 3 . Therefore, our answer is 1 3 .