As SteveD hinted at in the comments above: break apart via multiplication principle.
- Pick the $k-1$ additional elements which appear in the cycle containing $1$
$\binom{n-1}{k-1}$ choices
- Fixing the position of $1$, pick how the $k-1$ other elements in its cycle are ordered in relation to $1$
$(k-1)!$ choices
- Pick how the remaining $n-k$ elements are permuted without regard to cyclic structure
$(n-k)!$ choices
Convince yourself that every permutation such that $1$ is in a cycle of length $k$ is described and described uniquely via a sequence of answers to the above steps. Via multiplication principle then, the total number of such permutations is the product of the number of options available at each step.
$\binom{n-1}{k-1}(k-1)!(n-k)! = \frac{(n-1)!}{(k-1)!(n-k)!}(k-1)!(n-k)! = (n-1)!$
Check to make sure that this answer makes sense. What values of $k$ are possible? If we sum over all possible values of $k$, what is the total number of permutations? Does this agree with what we expect?
$n$ possible values for $k$, and for each we have the same amount of $(n-1)!$. Thus there are $n\cdot (n-1)! = n!$ total permutations, exactly what we expected would happen.