OFFSET
0,5
FORMULA
T(n,k) = A346905(n,k)/2^(n-k).
EXAMPLE
Triangle begins:
n\k | 0 1 2 3 4 5 6 7 8 9
----+--------------------------------------------------
0 | 1;
1 | 1, 1;
2 | 1, 3, 1;
3 | 1, 7, 3, 1;
4 | 1, 15, 9, 4, 1;
5 | 1, 31, 25, 10, 5, 1;
6 | 1, 63, 70, 35, 15, 6, 1;
7 | 1, 127, 196, 140, 35, 21, 7, 1;
8 | 1, 255, 553, 476, 175, 56, 28, 8, 1;
9 | 1, 511, 1569, 1624, 1071, 126, 84, 36, 9, 1
One of the T(7,3) = 140 ways of choosing a 3-cube from the vertices of a 7-cube where one of the vertices is the origin is the cube with the following eight points:
(0,0,0,0,0,0,0);
(1,1,0,0,0,0,0);
(0,0,1,0,0,1,0);
(0,0,0,0,1,0,1);
(1,1,1,0,0,1,0);
(1,1,0,0,1,0,1);
(0,0,1,0,1,1,1); and
(1,1,1,0,1,1,1).
MATHEMATICA
T[n_, 0] := 1
T[n_, k_] := Sum[n!/(k!*(i!)^k*(n - i*k)!), {i, 1, n/k}]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Peter Kagey, Aug 06 2021
STATUS
approved