(odd? n)
Returns true if n is an odd number.
n
Throws an exception if n is not an integer.
Returns true if n is odd, throws an exception if n is not an integer
(defn odd? [n] (not (even? n)))