(bit-clear x n)
Clear bit at index n
user=> (bit-clear 2r1011 3) ; index is 0-based 3 ;; 3 = 2r0011 ;; the same in decimal user=> (bit-clear 11 3) 3