APL (Dyalog Unicode), 16 12 bytesSBCS
Anonymous tacit prefix function. Assumes ⎕IO (Index Origin) to be 0, which is default on many systems. 1-indexed.
+/⊢↑∘∊¯1,¨⍨⍳ Try it online!
+/ the sum of
⊢↑ the first n elements
∘∊ of the ϵnlisted (flattened)
¯1,¨⍨ negative-one-appended-to-each
⍳ first n ɩndices (0 through n–1