Skip to content

Instantly share code, notes, and snippets.

@hiredman
Created November 12, 2009 00:06
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 hiredman/232449 to your computer and use it in GitHub Desktop.
Save hiredman/232449 to your computer and use it in GitHub Desktop.
(defn d "divisor function, totally useless" [n]
(* 2 (apply + (map #(if (math/whole-number? (/ n %)) 1 0) (range 1 (inc (floor (sqrt n))))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment