Can LCM of n numbers be obtained by taking LCM of 2 numbers and then taking LCM of this resulting LCM and the next number in the queue until all the numbers are exhausted by repeating this process?
In other words, Is the following formula valid?
LCM of (a,b,c,d,....) = LCM of ((LCM of ((LCM of (a,b)),c)),d)...