How to write n! until n = k?

68 Views Asked by At

I am looking for a more formal way to write n!, until n is equal to k.

Example:

n = 10 k = 5 Answer: 10 * 9 * 8 * 7 * 6 * 5

How would a mathematician write this?