OFFSET
0,2
COMMENTS
A hypergraph is a T_0 hypergraph if for every two distinct nodes there exists a hyperedge containing one but not the other node.
EXAMPLE
There are 108 labeled 3-node T_0-hypergraphs without multiple hyperedges (empty hyperedge excluded): 12 with 2 hyperedges, 32 with 3 hyperedges,35 with 4 hyperedges, 21 with 5 hyperedges, 7 with 6 hyperedges and 1 with 7 hyperedges.
MAPLE
with(combinat): for n from 0 to 15 do printf(`%d, `, (1/2)*sum(stirling1(n, k)*2^(2^k), k= 0..n)) od:
MATHEMATICA
Table[Sum[StirlingS1[n, k]*2^((2^k)-1), {k, 0, n}], {n, 0, 10}] (* G. C. Greubel, Oct 06 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Goran Kilibarda, Vladeta Jovovic, Dec 27 2000
EXTENSIONS
More terms from James A. Sellers, Jan 24 2001
STATUS
approved