|
|
EXAMPLE
| First few rows of the triangle =
1;
2, 1;
4, 2, 2;
8, 4, 4, 3;
16, 8, 8, 6, 5;
32, 16, 16, 12, 10, 8;
64, 32, 32, 24, 20, 16, 13;
128, 64, 64, 48, 40, 32, 26, 21;
256, 128, 128, 96, 80, 64, 52, 42, 34;
512, 256, 256, 192, 160, 128, 104, 84, 68, 55;
...
Row 4 = (16, 8, 8, 6, 5) = termwise products of (16, 8, 4, 2, 1) and (1, 1, 2, 3, 5).
For n=5 and k=3, T(5,3)=16 since there are 16 subsets of {1,2,3,4,5,6,7} containing consecutive integers with 3 as the first integer in the first consecutive string, namely,
{1,3,4}, {1,3,4,5}, {1,3,4,6}, {1,3,4,7}, {1,3,4,5,6}, {1,3,4,5,7}, {1,3,4,6,7}, {1,3,4,5,6,7}, {3,4}, {3,4,5}, {3,4,6}, {3,4,7}, {3,4,5,6}, {3,4,5,7}, {3,4,6,7}, and {3,4,5,6,7}.
[From Dennis Walsh, Dec 21 2011]
|