For this talk

For this talk I'm mainly concerned with this recursive definition

fib(0) = 0
fib(1) = 1
fib(n) = fib(n - 1) + fib(n - 2)