I am trying to find the formula for the number $g(n,k)$ which is the number of $k$-subsets of $[n]$ where no two elements are consecutive numbers in $[n]$ arranged in a circle.
I derived the following recursion $$f(n,k) = f(n-1,k) + f(n-2, k-1) $$ where $f(n,k)$ is the number of ways to take $k$=subsets from $[n]$
and also the formula of $f(n,k)$ as following $$f(n,k) = \binom{n-k+1}{k}$$
Also,
I derived following relation
$$g(n,k) = f(n-1,k) + f(n-3, k-1)$$
so that g(n,k) is just represented as $$\binom{n-k}{k} + \binom{n-k-1}{k-1}$$
Is there ways to merge this two binomials given as summation?