Say we pick $k$ numbers uniformly from $n$ without replacement and no order.
What is the expected number of consecutive numbers we will get?
For example, for $n=4, k=2$, only a draw of $(1,2),(2,3),(3,4)$ will result in $1$ consecutive numbers, so the expected number is $0.5$
I can also use a good upper bound instead of the expected value.
Assume $2 \leq k \leq n$. Let $S$ be a $k$-element subset of $[n]:=\{1, \dots, n\}$ chosen uniformly at random among all $k$-element subsets of $[n]$. For $i,j \in [n], i\neq j,$ define $$ X_{i,j} = \begin{cases} 1, i\in S \text{ and } j \in S \\ 0, \text{ otherwise. } \end{cases} $$ Then the number of consecutive pairs of numbers in $S$ is $$ X:= \sum_{i = 1}^{n-1} X_{i,i+1}. $$ Note that $$ \mathbb{E}[X_{i,j}] = P[i\in S \land j\in S] = \frac{\binom{n-2}{k-2}}{\binom{n}{k}}. $$ Thus by linearity of expectation we have: $$ \mathbb{E}[X] = \sum_{i = 1}^{n-1}\mathbb{E}[X_{i,i+1}] = (n-1)\frac{\binom{n-2}{k-2}}{\binom{n}{k}}. $$