OFFSET
0,8
COMMENTS
Also the number of set-systems with n vertices and n edges such that {i} is a singleton edge iff i <= k, and such that there is only one way to choose a different vertex from each edge.
FORMULA
T(n,k) = A361718(n,k)/binomial(n,k).
EXAMPLE
Triangle begins:
1
0 1
0 1 1
0 5 3 1
0 79 33 7 1
0 3377 1071 161 15 1
...
Row n = 3 counts the following set-systems:
{{1},{1,2},{1,3}} {{1},{2},{1,3}} {{1},{2},{3}}
{{1},{1,2},{2,3}} {{1},{2},{2,3}}
{{1},{1,3},{2,3}} {{1},{2},{1,2,3}}
{{1},{1,2},{1,2,3}}
{{1},{1,3},{1,2,3}}
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n]], {n}], Union@@Cases[#, {_}]==Range[k] && Length[Select[Tuples[#], UnsameQ@@#&]]==1&]], {n, 0, 3}, {k, 0, n}]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Jan 02 2024
EXTENSIONS
More terms from Alois P. Heinz, Jan 04 2024
STATUS
approved