BigIntegerMath.java | 361 * Returns {@code n} choose {@code k}, also known as the binomial coefficient of {@code n} and 368 public static BigInteger binomial(int n, int k) { method in class:BigIntegerMath 376 return BigInteger.valueOf(LongMath.binomial(n, k));
|