const fn central_binom(n: u8) -> usize
Expand description

Returns the value of 2n choose n, the central binomial coefficient. Implemented as const lookup table for speed and ease.

https://oeis.org/A000984

Panics

Panics for values of n > 26.