binomial function

int binomial(
  1. dynamic n,
  2. dynamic k
)

Implementation

int binomial(n, k) {
  return binomialLut[n][k];
}