;; In case you are searching for it, drop-nth is not in core.
(defn drop-nth [n coll]
(lazy-seq
(when-let [s (seq coll)]
(concat (take (dec n) (rest s))
(drop-nth n (drop n s))))))
(drop-nth 3 (range 10))
;; (1 2 4 5 7 8)
;; or alternatively: (keep-indexed #(when-not (zero? (rem %1 n)) %2) coll)