Skip to main content
1 of 2
ZippyMagician
  • 1.7k
  • 10
  • 11

Arn -x, 11 bytes

Ý®úŠ”→s©Ÿa' 

Try it!

Explained

Unpacked: (=>\)z^[1 1{+

 (=>\) Fold with inclusive range ([a, b] → [a, a+1, ..., b-1, b]) z^ Zipped with exponentiation to [1 1{+ The fibonacci sequence, closing }] implied Then take the sum 
ZippyMagician
  • 1.7k
  • 10
  • 11