The problem is as follows:
How many ways are there to pick $6$ of the first $20$ positive integers such that no $2$ of them are consecutive?
At first glance, this seems like a fairly straightforward combinatorics problem, but after trying it (and failing) I decided it isn't as easy as it looks.
My method was to find the number of ways you can choose $6$ integers such that there does exist consecutive integers, then subtract that from the total number of possibilities (${20 \choose 6}$ )
The first thing I did was to take all the possibilities for pairs of consecutive integers (there are $19$ of them, starting $(1,2),(2,3),(3,4),\dots,(19,20)$). There are $\binom{18}{4}$ ways to pick the remaining $4$ integers, hence there are a total of
$$19\times \binom{18}{4}=58140$$ possibilites. However, this number is greater than the total number of possibilities (which is $38760$). What am I doing wrong?