Given a sequence of $0$s and $1$s think of it as blocks of $0$s and $1$s. Like $0001101001$ is a sequence of blocks $000$,$11$,$0$,$1$,$00$,$1$
How may ways can one pick $t$ bits from a $0/1$ sequence such that no two of the bits are consecutive and each is from a separate block?
How many ways can one pick $t$ bits from a $0/1$ sequence such that each is from a separate block but no two of them are from consecutive blocks?
If there are $B$ blocks in the string then $^{B}C_t$ gives the number of ways you can pick $t$ bits such that each is from a separate block - this is because once the $t$ blocks are chosen it doesn't matter which of its elements is picked.