I should proof $\gcd(n_1, .... , n_k) = \gcd(n_1, \gcd(n_2,...,n_k))$
I did that:
$d = \gcd(n_1, .... , n_k) \rightarrow d | n_1, ..., d| n_2$
$e = \gcd(n_1, \gcd(n_2,...,n_k)) \rightarrow e|n_1, e|n_2,... ,e|n_k$
and if $e$ divides $n_1,n_2,...,n_k$, then $d|e$ and $d = e$.
Is that right?
This is almost right. To get it right, you have to use that $d$ is the greatest common divisor of $n_1, \dots, n_k$. In particular, if $x$ is a common divisor of $n_1, \dots, n_k$ then $x \operatorname{|} d$.
Here's how I would redact this proof :
Let $d = gcd(n_1, \dots, n_k)$ and $e = gcd(n_1, gcd(n_2,\dots, n_k))$
Since $d$ is a common divisor of $n_2,\dots,n_k$, we have $d \operatorname{|} gcd(n_2,\dots,n_k)$. Hence $d$ is a common divisor of $n_1$ and $gcd(n_2,\dots,n_k)$, whence $d \operatorname{|} e$.
Since $e$ divides $gcd(n_2,\dots,n_k)$, $e$ is a common divisor of $n_2,\dots,n_k$. But $e$ is also a divisor of $n_1$. Hence, $e \operatorname{|} d$.
Since $d \operatorname{|} e$ and $e \operatorname{|} d$, we have $\boxed{d = e}$.