I simplified the most inner sum to: $j$. So, now I have:
$$\sum^{n-1}_{i=1}\sum^{n}_{j=i+1}j$$
I'm not sure if the following is correct but here is what I am thinking. I can re-index the inner sum by letting $m = j - i$. So, now I have
$$\sum^{n-1}_{i=1}\sum^{n}_{m=1} (j - m + 1)$$
Then the inner sum becomes:
$$\frac{(j-m+1)(j - m + 2)}{2}$$
So now I'm left with:
$$\sum^{n-1}_{i=1} \frac{(j-m+1)(j - m + 2)}{2} $$
Since, $j - m = i$, I have:
$$\sum^{n-1}_{i=1} \frac{(i+1)(i + 2)}{2} $$
Assuming the above is correct (for whatever reason, it doesn't feel right) then the only issue I am having is the pesky $n-1$ at the top. Can I do a change of variable on that as well and if I do then what would I have to subtract (or add) later? If that's not a good method and what's a good way to go about figuring this out?
Thanks a lot!