The inequality in $\sum_{k\le j \le i\le n} a_{i,j}$ means that you are summing up all $a_{i,j}$ with $i,j$ satisfying $k\le j\le i \le n$. ( $i, j$ are just dummy variables in this case)
It will make sense if you read the double summation from the left to the right. The first $\sum_{i=k}^n$ means that you are summing from $i=k$ to $i=n$ so it's necessary that $k\le i\le n$. Then you read the second sum, $\sum_{j=k}^i$, which means summing from $j=k$ to $j=i$, so it's necessary that $k\le j\le i$. Combining $k\le i\le n$ and $k\le j\le i$ yield $k\le j\le i \le n$.
For $\sum_{j=k}^n\sum_{i=j}^n a_{i,j}$, reading from the left to the right leads to $k\le j\le n$ and $j\le i\le n$, which again yield $k\le j\le i \le n$.
Finally, $\sum_{j=0}^{n-k}\sum_{i=k}^{n-j} a_{i+j,i}$ indicates that $0\le j\le n-k$ and $ k\le i\le n-j$, which leads to $k\le i\le j+i \le n$. Then you notice in this case the terms are $a_{i+j,i}$ instead of $a_{i,j}$, but with the inequality changed it still means the same summation.
BTW, check out user296113's picture, it's easier to understand visually.