Comment on Fibonacci series and Dynamic programmingComments−dhruvchandna13yIn Clojure you can implement this as: (def fib-list (map first (iterate (fn [[a b]] [b (+ a b)]) [0N 1N]))) (nth fib-list 100) 354224848179261915075N
Comments
In Clojure you can implement this as: