You have a deck of n cards with face values $1,...,n$, out of which you pick m cards u.a.r. without replacement. You want to know what is the probability that there are at least $m-1$ cards whose face values are consecutive among the m that you picked.
There is a simple formula that solves this question. How can I find it?
Assume $m\ge 3$.
We will count the cases where there is a run of (at least) $m-1$ cards chosen.
If the earliest run of $m-1$ cards starts at $1$, then the values $1, 2, ...,m-1$ have all been chosen; and the remaining chosen card could be any of the remaining $n-m+1$ values.
If the earliest run of $m-1$ cards starts at $k$ with $k>1$ (and necessarily $k\le n-m+2$), then the remaining chosen card can be any of the remaining values except $k-1$. There are $n-m$ such cards.
So the total number of card combinations with at least $m-1$ consecutive values is given by $$\begin{array}{ccc}(n-m+1)&+ & \underbrace{(n-m)+(n-m)+\cdots+(n-m)} \\&& (n-m+1)\;\rm{terms} \end{array}=(n-m+1)^2$$
This gives a probability of $\frac{(n-m+1)^2}{n\choose m}$ of getting a run of $m-1$ consecutive values among the choice of $m$ cards.