cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A086211 Triangle related to Bell numbers; T(n,k) read by rows, n>=0, 0<=k<=n: T(n,k) = k*T(n-1,k) + Sum(0<=j, T(n-1,k-1+j)); T(0,0)=1, T(0,k)=0 if k>0.

Original entry on oeis.org

1, 1, 1, 2, 3, 1, 6, 9, 6, 1, 22, 31, 28, 10, 1, 92, 123, 126, 69, 15, 1, 426, 549, 586, 418, 145, 21, 1, 2146, 2695, 2892, 2425, 1165, 272, 28, 1, 11624, 14319, 15262, 14058, 8551, 2826, 469, 36, 1
Offset: 0

Views

Author

Philippe Deléham, Aug 27 2003, Jun 16 2007

Keywords

Comments

With offset 1 for k, T(n,k) is the number of indecomposable set partitions of [n+2] in which 1 is in the k-th block when the blocks are arranged in order of increasing largest entry. For example, T(2,2)=3 counts 2/134, 23/14, 3/124; see Link. - David Callan, Aug 30 2014

Examples

			Triangle begins:
1;
1, 1;
2, 3, 1;
6, 9, 6, 1;
22, 31, 28, 10, 1;
92, 123, 126, 69, 15, 1;
426, 549, 586, 418, 145, 21, 1;
2146, 2695, 2892, 2425, 1165, 272, 28, 1;
11624, 14319, 15262, 14058, 8551, 2826, 469, 36, 1 ;
...
		

Crossrefs

Cf. A000110.

Formula

Sum(k=0..n, A000110(k)*T(n-k,0)) = A000110(n+1).
Sum_{k=0..n} T(n, k) = A074664(n+2). - Philippe Deléham, May 10 2005