6. Permutations
Sign In
The value of the permutation P(n,r) is the product of r numbers that starts with n, and each next number in the product is one less than the previous one.
95 040
The value of the permutation P(n,r) is the product of r numbers that starts with n, and each next number in the product is one less than the previous one.
P(n,r) = n * (n-1) * ⋯ * (n-(r-2)) * (n-(r-1))_(rnumbers)