combination(n_, k_) := If(k==0 or n==k, 1, If(n>k, combination(n-1, k-1)+ combination(n-1, k))) ;