I have a regular $n$-gon, of which I have to select $k$ vertices. The selections must be rotationally distinct; two selections would be considered equivalent if one is a rotation of the other. For example, if I have a square, and I want to select 2 vertices, there are only 2 possible ways to do that according to the constraint. One is "x - x -", another is "x x - -".
If we denote the function by $CR(n,k)$, then these are the trivial cases:
$CR(n, 1) = 1$
$CR(n, 2) = \lfloor\frac{n}{2}\rfloor$
- $CR(n, k) = CR(n, n - k)$
I am quite short of ideas on how to find the recurrence or closed formula of this problem, or if this problem has any closed form / recurrence solution at all. Any help with a bit detailed walk through would be much appreciated.