1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
\begin{array}{|l|c|c|c|} \hline \text{Name} & \text{Ordered} & \text{With Repetition} & \text{Without Repetition} \\ \hline \text{Permutation} & \text{Yes} & n^k & \frac{n!}{(n - k)!} \\ \hline \text{Combination} & \text{No} & {n + k - 1 \choose k} & {n \choose k} \\ \hline \end{array}