In combinatorics, the nth Bell number, named after Eric Temple Bell, is the number of partitions of a set with n members, or equivalently, the number of equivalence relations on it. Starting with B0 = B1 = 1, the first few Bell numbers are: 1, 1, 2, 5, 15, 52, 203, 877, 4140, 21147, 115975, … (sequence A000110 in OEIS). (See also breakdown by number of subsets/equivalence classes.) Partitions of a set In general, Bn is the number of partitions of a set of size n. A partition of a set S is defined as a set of nonempty, pairwise disjoint subsets of S whose union is S. For example, B3 = 5 because the 3-element set {a, b, c} can be partitioned in 5 distinct ways: { {a}, {b}, {c} } B0 is 1 because there is exactly one partition of the empty set. Every member of the empty set is a nonempty set (that is vacuously true), and their union is the empty set. Therefore, the empty set is the only partition of itself. Note that, as suggested by the set notation above, we consider neither the order of the partitions nor the order of elements within each partition. This means the following partitionings are all considered identical: { {b}, {a, c} } Properties of Bell numbers The Bell numbers satisfy this recursion formula: \( B_{n+1}=\sum_{k=0}^{n}{{n \choose k}B_k}. \) They also satisfy "Dobinski's formula": \( B_n=\frac{1}{e}\sum_{k=0}^\infty \frac{k^n}{k!} \) = the nth moment of a Poisson distribution with expected value 1. And they satisfy "Touchard's congruence": If p is any prime number then \( B_{p+n}\equiv B_n+B_{n+1}\ (\operatorname{mod}\ p). \) or, generalizing \( B_{p^m+n}\equiv mB_n+B_{n+1}\ (\operatorname{mod}\ p). \) Each Bell number is a sum of Stirling numbers of the second kind \( B_n=\sum_{k=0}^n \left\{{n\atop k}\right\} =\sum_{k=0}^n \frac{1}{k!}\sum_{j=0}^{k}(-1)^{k-j}{k \choose j} j^n \) The Stirling number \( \left\{{n\atop k}\right\} \)is the number of ways to partition a set of cardinality n into exactly k nonempty subsets. More generally, the Bell numbers satisfy the following recurrence[1]: \( B_{n+m} = \sum_{k=0}^n \sum_{j=0}^m \left\{{m\atop j}\right\} {n \choose k} j^{n-k} B_k. \) The nth Bell number is also the sum of the coefficients in the polynomial that expresses the nth moment of any probability distribution as a function of the first n cumulants; this way of enumerating partitions is not as coarse as that given by the Stirling numbers. The exponential generating function of the Bell numbers is \( \sum_{n=0}^\infty \frac{B_n}{n!} x^n = e^{e^x-1}. \) Asymptotic limit and bounds Several asymptotic formulae for the Bell numbers are known. One such is \( B_n \sim \frac{1}{{\sqrt n }}\left[ {\lambda \left( n \right)} \right]^{n + \frac{1}{2}} e^{\lambda \left( n \right) - n - 1}. \) Here \( \lambda(n) = e^{W(n)}= \frac{n}{W(n)},\, \) where W is the Lambert W function. (Lovász, 1993) In (Berend, D. and Tassa, T., 2010), the following bounds were established: \( B_n < \left( \frac{0.792 n}{\ln( n+1)} \right)^n ~; \) moreover, if \( \varepsilon>0 \) then for all \(n > n_0(\varepsilon) \), \( B_n < \left( \frac{e^{-0.6 + \varepsilon} n}{\ln(n+1)}\right)^n \) where \( ~n_0(\varepsilon) = \max\left\{e^4,d^{-1}(\varepsilon) \right\}~ and ~d(x):= \ln \ln (x+1) - \ln \ln x + \frac{1+e^{-1}}{\ln x}\,. \) The Bell numbers can easily be calculated by creating the so-called Bell triangle, also called Aitken's array[citation needed] or the Peirce triangle : Start with the number one. Put this on a row by itself. For example, the first row is made by placing one by itself. The next (second) row is made by taking the rightmost number from the previous row (1), and placing it on a new row. We now have a structure like this: 1 The value x here is determined by adding the number to the left of x (one) and the number above the number to the left of x (also one). 1 The value y is determined by copying over the number from the right of the previous row. Since the number on the right hand side of the previous row has a value of 2, y is given a value of two. 1 Again, since x is not the leftmost element of a given row, its value is determined by taking the sum of the number to x's left (three) and the number above the number to x's left (two). The sum is five. Here is the first five rows of this triangle: 1 The fifth row is calculated thus: Take 15 from the previous row Computer program The following is example code in the Ruby programming language that prints out all the Bell numbers from the 1st to the 300th inclusive (the limits can be adjusted) #!/usr/bin/env ruby
def bell_numbers(start, stop): The number in the nth row and kth column is the number of partitions of {1, ..., n} such that n is not together in one class with any of the elements k, k + 1, ..., n − 1. For example, there are 7 partitions of {1, ..., 4} such that 4 is not together in one class with either of the elements 2, 3, and there are 10 partitions of {1, ..., 4} such that 4 is not together in one class with element 3. The difference is due to 3 partitions of {1, ..., 4} such that 4 is together in one class with element 2, but not with element 3. This corresponds to the fact that there are 3 partitions of {1, ..., 3} such that 3 is not together in one class with element 2: for counting partitions two elements which are always in one class can be treated as just one element. The 3 appears in the previous row of the table. And yet another very similar implementation, in Common Lisp (defun print-bell-numbers (start finish) Prime Bell numbers The first few Bell numbers that are primes are: 2, 5, 877, 27644437, 35742549198872617291353508656626642567, 359334085968622831041960188598043661065388726959079837 (sequence A051131 in OEIS) corresponding to the indices 2, 3, 7, 13, 42 and 55 (sequence A051130 in OEIS). The next prime is B2841, which is approximately 9.30740105 × 106538.[2] As of 2006, it is the largest known prime Bell number. Phil Carmody showed it was a probable prime in 2002. After 17 months of computation with Marcel Martin's ECPP program Primo, Ignacio Larrosa Cañestro proved it to be prime in 2004. He ruled out any other possible primes below B6000, later extended to B30447 by Eric Weisstein. Bell polynomials References ^ Spivey, Michael (2008). "A Generalized Recurrence for Bell Numbers". Journal of Integer Sequences 11. Gian-Carlo Rota (1964). "The Number of Partitions of a Set". American Mathematical Monthly 71 (5): 498–504. doi:10.2307/2312585. MR0161805. External links Robert Dickau. "Diagrams of Bell numbers". Retrieved from "http://en.wikipedia.org/"
|
|
|