Questions tagged [bell-numbers]

For questions related to the Bell numbers, a sequence of natural numbers that occur in partitioning a finite set.

In combinatorial mathematics, the Bell number $B_n$ is the number of possible partitions of an $n$-element set (not to be confused with the , which are also commonly denoted $B_n$).

The first few Bell numbers are: $1, 1, 2, 5, 15, 52, 203, 877, 4140, 21147, \dots$ (sequence A000110 in the OEIS).

These numbers have been studied by mathematicians since the 19th century, and their roots go back to medieval Japan, but they are named after the Scottish-born mathematician Eric Temple Bell (1883–1960), who wrote about them in the 1930s.

The Bell numbers satisfy the following

  1. a recurrence relation involving : $$B_{n+1}=\sum_{k=0}^{n} \binom{n}{k} B_k.$$
  2. a formula involving of the second kind: $$B_n=\sum_{k=0}^n \left\{{n\atop k}\right\}.$$
  3. an identity involving both and of the second kind (Spivey (2008)): $$B_{n+m} = \sum_{k=0}^n \sum_{j=0}^m \left\{{m\atop j}\right\} {n \choose k} j^{n-k} B_k.$$
  4. Dobiński's formula: $$B_n = \frac1e \sum_{k=0}^\infty \frac{k^n}{k!}.$$
  5. a complex integral representation $$ B_n = \frac{n!}{2 \pi i e} \int_{\gamma} \frac{e^{e^z}}{z^{n+1}} \, \mathrm{d}z. $$

The generating function of the Bell numbers is $$B(x) = \sum_{n=0}^\infty \frac{B_n}{n!} x^n = e^{e^x-1}.$$

The Bell numbers are periodic modulo $p$, where $p$ is any prime number, because of Touchard's congruence.

$$B_{p+n}\equiv B_{n}+B_{n+1}{\pmod {p}}$$ or, more generally, $$B_{p^{m}+n}\equiv mB_{n}+B_{n+1}{\pmod {p}}.$$

The period of the Bell numbers to modulo $n$ are described by the sequence A054767 in the OEIS.

82 questions
1
vote
1 answer

What does it mean to evaluate the 'inputs' of the Bell polynomial?

In page 218 of this pdf, the author says if we set $x_i = 1$, we are simply counting the number of partitions of {1,2,3..m} and he says that $B_{m,k} (1,1,1,1,1..) = mSk$ where $ mSk$ is the Stirling number of second kind but I don't understand…