Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 308 Bytes

README.md

File metadata and controls

18 lines (9 loc) · 308 Bytes

fiblisp

fib_recursion.lisp

implementation of the fibonacci sequence with double recursion

fib_golden.lisp

implementation of the fibonacci sequence calculation with the golden ratio forumula:

Nx = ( (phi)^x - (1- phi)^x ) / sqrt(5)

where phi is the golden ratio:

phi = 1.6180339887...