$F(0) = 1\\\\\\
F(1) = 1\\\\\\
F(2) = F(1) + F(0) \\\\\\
\ldots\\\\\\
F(n) = F(n-1) + F(n-2)$
Note: Fibonacci sequences appear in biological setting such as branching in trees, arrangement of leaves on a stem, the fruitlets of a pineapple. Kepler pointed out the presence of the Fibonacci sequence in nature, using it to explain the (golden ratio-related) pentagonal form of some flowers.
---
## Computing Fibonacci numbers
```python
def fibonacci(n):
if n==1 or n==0:
return 1
return fibonacci(n-1) + fibonacci(n-2)
```
![F7](images/fundamental_string/f7.png)
---
## Time Complexity