I am solving this equation:

My issue arises on line 2 where we have (n + 1 - 2 + 1)(n + 1 + 2)/2. This is what i understand. We have the formula n! = n(n+1)/2. Subbing values into the equation yields us with 10[(n+1)(n+1 + 1)/2] however we need to account for the fact we are starting at j = 2. I would then do this by 10[(n+1-2)(n+1+1)/2]. What I dont understand is why in the solution they have given
- (n+1 - 2 - 1 +1) the -1 + 1
- (n + 1 + 2) the + 2
How did they make that logical jump and what were the steps/thought process in doing so.