login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A285641
Triangle read by rows: T(n,k) is the number of hypergraphs on n labeled nodes that have exactly k isolated points, n>=0, 0<=k<=n.
0
1, 1, 1, 5, 2, 1, 109, 15, 3, 1, 32297, 436, 30, 4, 1, 2147321017, 161485, 1090, 50, 5, 1, 9223372023970362989, 12883926102, 484455, 2180, 75, 6, 1, 170141183460469231667123699502996689125, 64563604167792540923, 45093741357, 1130395, 3815, 105, 7, 1
OFFSET
0,4
COMMENTS
An isolated point is a vertex of degree 0.
FORMULA
E.g.f.: exp(y*x)*A(x) where A(x) is the e.g.f. for A003465.
EXAMPLE
Triangle begins:
1,
1, 1,
5, 2, 1,
109, 15, 3, 1,
32297, 436, 30, 4, 1,
2147321017, 161485, 1090, 50, 5, 1
...
MATHEMATICA
nn = 5; A[z_] := Sum[Sum[(-1)^i Binomial[n, i] 2^(2^(n - i) - 1), {i, 0, n}] z^n/n!, {n, 0, nn}]; Map[Select[#, # > 0 &] &, Range[0, nn]! CoefficientList[Series[Exp[u z] A[z], {z, 0, nn}], {z, u}]] // Grid
CROSSREFS
Column k=0 is A003465.
Row sums give A058891.
Sequence in context: A229959 A174485 A334343 * A257856 A021661 A324187
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Apr 23 2017
STATUS
approved