Skip to content

Instantly share code, notes, and snippets.

@R4wm
Created August 26, 2017 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save R4wm/91c7318ebf92d2cbd3a33f1216f197db to your computer and use it in GitHub Desktop.
Save R4wm/91c7318ebf92d2cbd3a33f1216f197db to your computer and use it in GitHub Desktop.
>>> def fib(n):
... if n > 3:
... return fib(n -1) + (fib(n-2) * 2) + (fib(n-3) * 3)
... else:
... return n
...
>>> fib(9)
696
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment