Another approach is to use$\newcommand{\lcm}{\operatorname{lcm}}$
$$\lcm(a,b,c) = \lcm(\lcm(a,b),c),$$
which can be generalized recursively to more elements. i.e.
$$\lcm(a_1,\lcm(a_2, \lcm(a_3,\cdots \lcm(a_{k-1},a_k) )))$$
This can be further broken down to a series of $\gcd(x,y)$'s which answers the original question. For example letting $d=\gcd(a,b)$,
$$\lcm(a,b,c) = \lcm(\lcm(a,b),c) = \lcm(ab/d,c)=\frac{(ab/d)c}{\gcd(ab/d,c)}$$
Perhaps it may also be good to have a proof of the first statement, which is essentially same as jgon's answer: It suffices to consider the exponent of any prime $p$ for both sides and check that they are the same. Denote $v_p(x)$ the exponent of prime $p$ in the prime factorization of an integer $x$. For any chosen prime $p$, let $v_p(a)=u,v_p(b)=v,v_p(c)=w$. The $\lcm$ function ensures that the largest is chosen, so
$$
\begin{align*}
v_p(\lcm(a,b,c)) &= \max(v_p(a),v_p(b),v_p(c)) \\
&= \max(u,v,w) \\
v_p(\lcm(\lcm(a,b),c)) &= \max(v_p(\lcm(a,b)),v_p(c))\\
&= \max(\max(v_p(a),v_p(b)),w) \\
&= \max(\max(u,v),w)\\
&= \max(u,v,w)
\end{align*}
$$