Central binomial coefficient
The central binomial coefficient \binom{2n}{n} is the binomial coefficient that selects the middle entry in the $2nth row of Pascal's triangle (for nonnegative integer n), given explicitly by the formula \frac{(2n)!}{(n!)^2}.[1] It counts the number of ways to choose n items from a set of $2n distinct items without regard to order, and equivalently, the number of monotonic lattice paths along the edges of a grid with n \times n square cells.[1] This coefficient also equals the sum of the squares of the binomial coefficients in the nth row of Pascal's triangle: \sum_{k=0}^n \binom{n}{k}^2 = \binom{2n}{n}.[1] Central binomial coefficients play a fundamental role in combinatorics and analysis, serving as a cornerstone for counting problems and generating functions due to their rich structure and frequent appearances in series expansions.[2] The ordinary generating function for the sequence is \sum_{n=0}^\infty \binom{2n}{n} x^n = \frac{1}{\sqrt{1-4x}} for |x| < \frac{1}{4}, which arises in contexts like the enumeration of binary trees and random walks.[1] They are intimately connected to the Catalan numbers C_n = \frac{1}{n+1} \binom{2n}{n}, which quantify diverse structures such as correctly matched parentheses and non-crossing partitions.[1] Asymptotically, the central binomial coefficient grows like \binom{2n}{n} \sim \frac{4^n}{\sqrt{\pi n}} as n \to \infty, a result derived from Stirling's approximation to the factorials, with more refined expansions involving higher-order terms for precise estimates in large-n applications.[3] These coefficients exhibit notable number-theoretic properties, such as never being prime for n > 1 and having only finitely many squarefree values (specifically 2, 6, and 70 for n=1,2,4), as established through advanced theorems in analytic number theory.[4] Their study extends to inequalities, divisibility criteria by primes, and integrals, underscoring their utility across pure and applied mathematics.[2]Definition and Basics
Definition
The binomial coefficient \binom{m}{k} is defined as the number \frac{m!}{k!(m-k)!}, where m and k are non-negative integers with k \leq m, representing the number of ways to choose k elements from a set of m elements without regard to order.[5] The nth central binomial coefficient is the specific binomial coefficient \binom{2n}{n}, also denoted C(2n, n), given explicitly by the formula \binom{2n}{n} = \frac{(2n)!}{(n!)^2}. [4] This quantity arises as the central entry in the (2n)th row of Pascal's triangle, where the entries are the binomial coefficients \binom{2n}{k} for k = 0, 1, \dots, 2n, and \binom{2n}{n} is the largest among them due to the symmetry and unimodality of the row. The term "central binomial coefficient" reflects its position at the center of the even-length row in Pascal's triangle. These coefficients appeared in early combinatorial studies during the 18th century, notably in Leonhard Euler's Introductio in analysin infinitorum (1748), where binomial expansions and their applications in series were explored.[6] They possess significant combinatorial interpretations, such as counting balanced parentheses or lattice paths, which are elaborated in subsequent sections.Examples and Computation
The central binomial coefficient \binom{2n}{n} for small values of n illustrates its rapid growth. The sequence begins with \binom{0}{0} = 1, \binom{2}{1} = 2, \binom{4}{2} = 6, and continues as shown in the following table for n = 0 to $10:[1]| n | \binom{2n}{n} |
|---|---|
| 0 | 1 |
| 1 | 2 |
| 2 | 6 |
| 3 | 20 |
| 4 | 70 |
| 5 | 252 |
| 6 | 924 |
| 7 | 3432 |
| 8 | 12870 |
| 9 | 48620 |
| 10 | 184756 |
math.comb(2*n, n) function implements the multiplicative formula with built-in big integers for exact results up to very large n. Similarly, Mathematica's Binomial[2 n, n] leverages arbitrary-precision computation for exact values. For extremely large n (e.g., n > 10^6), where even arbitrary-precision multiplication becomes costly, fast Fourier transform (FFT)-based methods accelerate the computation of the product in the multiplicative formula by enabling rapid convolution for the numerator and denominator terms. For estimating values without exact computation, asymptotic approximations provide scale, such as \binom{2n}{n} \sim \frac{4^n}{\sqrt{\pi n}} via Stirling's formula (detailed in later sections).[4]