Consider you have a set of $n$ elements. Now, create all the possible permutations of $k$ elements. Finally, for each permutation create all the possible combinations with the permutations of the remaining $n-k$ elements of the original set (recursive permutations). For example $S = \{1, 2, 3\}$, with $k = 1$, we would have: $$\{1\} \rightarrow \{2, 3\} \\ \{1\} \rightarrow \{3, 2\} \\ \{2\} \rightarrow \{1, 3\} \\ \{2\} \rightarrow \{3, 1\} \\ \{3\} \rightarrow \{1, 2\} \\ \{3\} \rightarrow \{2, 1\} \\ $$
Now we can apply the same idea to the permutations of the $n-k$ elements, thus why I call it recursive permutation. So if we consider the case $n = 4$ $k = 1$ , we would have for all $k_r$ of the $n-k$ set: $k_r = 3$ $$ \{1\} \rightarrow \{2, 3, 4\}\\ \{1\} \rightarrow \{2, 4, 3\} \\ \{1\} \rightarrow \{3, 2, 4\} \\ \{1\} \rightarrow \{3, 4, 2\} \\ \{1\} \rightarrow \{4, 2, 3\} \\ \{1\} \rightarrow \{4, 3, 2\} \\ $$ $k_r=2$ $$ \{1\} \rightarrow \{2, 3\}\rightarrow \{4\} \\ \{1\} \rightarrow \{3, 2\}\rightarrow \{4\} $$ ... and so on and so forth.
What is the total number of recursive permutations for all values of $k$ at all recursion levels, where $1<k\leq n$?