What is the smallest value of such that is divisible by 1, 2, 3, 4, 5 and 6?
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.
The LCM of 1, 2, 3 ,4, 5, and 6 is just 6 0 = 2 2 3 1 5 1 . We are interested in the smallest positive integer n such that:
1 + 2 + 3 + . . . + n = 2 n ( n + 1 ) = 6 0 k ; k ∈ N
holds true. Solving for n produces the quadratic n 2 + n − 1 2 0 k = 0 ⇒ n = 2 − 1 ± 1 2 − 4 ( 1 ) ( − 1 2 0 k ) = 2 − 1 + 4 8 0 k + 1 (NOTE: we only accept the positive root to ensure n > 0 ). At k = 2 , we obtain n = 2 − 1 + 9 6 1 = 2 − 1 + 3 1 = 1 5 .
Hence, the smallest such value for n is 1 5 .