Returns the number of permutations of n elements to k-th order without repetition.
# = Variat(n, k)
Variat(n,k) is defined as:
Variat(n,k)=n!/(n-k)!.
OpenW # 1
Print Variat(6, 2) // Prints 30
If k > n an error is reported.
{Created by Sjouke Hamstra; Last updated: 25/10/2014 by James Gaite}