How would I prove
$$ \sum_{i=1}^n i(i!) = (n+1)! -1 $$
The base case is n = 1, which is trivial, and using the inductive hypothesis, I get to
$$ \sum_{i=1}^{n+1} i(i!) = \sum_{i=1}^n i(i!) + (n+1)(n+1)! $$ which equals $$ (n + 1)! - 1 + (n + 1)(n + 1)! $$ I know it has to end up equaling $$ (k + 2)(k + 1)! - 1\\ $$
but I don't know how to make the jump between the two steps. Any help would be appreciated.