This has no special name, it is just "shifting of the summation index". I think it works best for beginners if you give the shifted index a new name. Let us start with the first sum and then say you want a new summation index
$$ k = i - 1 .$$
If you sum $i$ from 2 to 19, that means you sum $k$ from $1= 2 -1 $ to $18 = 19 - 1$. And to see what happens to the summands, compute as follows, useing that $k=i-1$,
$$\sum_{i=2}^{19} i (i-2) = \sum_{i=2}^{19} (i-1+1)(i-1-1)= \sum_{k=1}^{18} (k+1)(k-1). $$
So you see that the "+1" in the summands compensates the shift down in the summation index. And now you can rename $k$ to $i$ or anything else if you like, because the name of the summation index does not matter at all (it is a so-called "silent" index).