Skip to content

Instantly share code, notes, and snippets.

@rosenk
Created October 15, 2009 21:23
Show Gist options
  • Save rosenk/211298 to your computer and use it in GitHub Desktop.
Save rosenk/211298 to your computer and use it in GitHub Desktop.
(def triangle-numbers
(lazy-cat [1]
(map + triangle-numbers (iterate inc 2))))
(defn num_devisors [x]
(* 2 (count (filter #(= (rem x %) 0)
(range 1 (Math/sqrt x))))))
(first
(filter #(> (num_devisors %) 500)
triangle-numbers))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment