To remove the element at index n from vector v:

(defn remove-indexed [v n]
  (into (subvec v 0 n) (subvec v (inc n))))