A367916 Number of sets of nonempty subsets of {1..n} with the same number of edges as covered vertices.
1, 2, 6, 45, 1376, 161587, 64552473, 85987037645, 386933032425826, 6005080379837219319, 328011924848834642962619, 64153024576968812343635391868, 45547297603829979923254392040011994, 118654043008142499115765307533395739785599
Offset: 0
Keywords
Examples
The a(0) = 1 through a(2) = 6 set-systems: {} {} {} {{1}} {{1}} {{2}} {{1},{2}} {{1},{1,2}} {{2},{1,2}}
Links
- Andrew Howroyd, Table of n, a(n) for n = 0..50
Crossrefs
Programs
-
Mathematica
Table[Length[Select[Subsets[Rest[Subsets[Range[n]]]], Length[Union@@#]==Length[#]&]],{n,0,3}]
-
PARI
\\ Here b(n) is A054780(n). b(n) = sum(k=0, n, (-1)^(n-k) * binomial(n,k) * binomial(2^k-1, n)) a(n) = sum(k=0, n, binomial(n,k) * b(k)) \\ Andrew Howroyd, Dec 29 2023
Formula
Binomial transform of A054780.