Supposing I have the following sequence based on two indexes:
$a$ and $b$.
For $a$ starting with $1$ and $b$ starting with $5$ we have the following sum:
$$1 \cdot 5 + 2 \cdot 4 + 3 \cdot 3 + 4 \cdot 2 + 5 \cdot 1$$
i.e. $a$ is incremented from value $1$ till the value of $b$ and $b$ is decremented till the value of $a$. They are multiplied and the summed with the result of the previous multiplication.
Is there any short formula that permits me to get the same results for a much bigger range of $a$ and $b$?
You should note that each term in the sum you gave adds up to $6$.
One way to rewrite the sum is $1(6-1)+2(6-2)+...$
So in general the general term of the sum will look like $k(n-k) $.
With $n$ fixed, which extreme values should $k$ take?
This should help you rewrite the sum with the regular $\sum$ symbol.