Posted by Rick on the 18th of October, 2008 at 7:01 pm under ublog.    This post has Comments.

By far the most brain-bendingly elegant definition of all the Fibonacci numbers I have ever encountered:

(def fibs (lazy-cat '(1 2) (map + fibs (drop 1 fibs))))

Found over an the clojure-euler wiki.