Skip to main content
3 of 5
-4
Adám
  • 31.8k
  • 4
  • 131
  • 293

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

Adám
  • 31.8k
  • 4
  • 131
  • 293