Consider the inner summation. Note that it is indexed by $k$, meaning that $k$ is variable in this summation while everything else is constant. In particular, $n$ is a constant. Therefore
$$\sum_{k=1}^j n = n\sum_{k=1}^j1 = nj.$$
In light of the previous calculation, in the second summation we would like to compute
$$\sum_{j=i}^{n+i}\sum_{k=1}^j n = \sum_{j=i}^{n+1}nj = \sum_{j=1}^{n+1}nj-\sum_{j=1}^{i-1}nj.$$
Here the variable in the summation is $j$, so again we can pull $n$ in front to get
$$\sum_{j=1}^{n+1}nj-\sum_{j=1}^{i-1}nj = n \left(\sum_{j=1}^{n+i}j-\sum_{j=1}^{i-1}j\right) = n \left(\frac{(n+i)(n+i+1)}{2} - \frac{(i-1)i}{2}\right).$$
Note that a well known formula for summing the number from 1 to m (see https://en.wikipedia.org/wiki/1_%2B_2_%2B_3_%2B_4_%2B_⋯)
Finally, the outer summation. We would now like to compute
\begin{align*}
\sum_{i=1}^{2n}\sum_{j=i}^{n+i}\sum_{k=1}^j n &= \sum_{i=1}^{2n}n \left(\frac{(n+i)(n+i+1)}{2} - \frac{(i-1)i}{2}\right)\\
& = \sum_{i=1}^{2n}\frac{n^3+2n^2i+n^2+2ni}{2}.
\end{align*}
In this summation, the variable is $i$ so we can factor out multiplicative factors of $n$. After breaking up the long fraction, this gives us
\begin{align*}
&=\sum_{i=1}^{2n}\sum_{j=i}^{n+i}\sum_{k=1}^j n\\
&=\frac{n^3}{2}\left(\sum_{i=1}^{2n}1\right)+n^2\left(\sum_{i=1}^{2n}i\right)+\frac{n^2}{2}\left(\sum_{i=1}^{2n}1\right)+n\left(\sum_{i=1}^{2n}i\right)\\
& = \frac{n^3}{2}\left(2n\right)+n^2\left(\frac{2n(2n+1)}{2}\right)+\frac{n^2}{2}\left(2n\right)+n\left(\frac{2n(2n+1)}{2}\right),
\end{align*}
where I used the same formula to sum the number 1 to 2n, and I used this other well known formula
$$\sum_{i=1}^n i^2 = \frac{i(i+1)(2i+1)}{6}.$$
for summing the numbers $1^2, 2^2,..., (2n)^2$ (see https://proofwiki.org/wiki/Sum_of_Sequence_of_Squares
).
So I'm sure you'll want to reduce this, but the summation is above.