OFFSET
0,2
LINKS
Aidar Dulliev and Daniil Naumikhin, Binomial Transform of Sequences Counting N-ary Convexities, arXiv:2606.11252 [math.GM], 2026. See p. 6 (Table 2).
Wikipedia Topological space.
FORMULA
From Geoffrey Critzer, Jul 12 2022: (Start)
E.g.f.: exp(x)*A(exp(x)-1) where A(x) is the e.g.f. for A001035.
a(n) = Sum_{k=0..n} binomial(n,k)*A000798(k). (End)
EXAMPLE
The a(0) = 1 through a(2) = 7 topologies:
{{}} {{}} {{}}
{{},{1}} {{},{1}}
{{},{2}}
{{},{1,2}}
{{},{1},{1,2}}
{{},{2},{1,2}}
{{},{1},{2},{1,2}}
MATHEMATICA
Table[Length[Select[Subsets[Subsets[Range[n]]], MemberQ[#, {}]&&SubsetQ[#, Union[Union@@@Tuples[#, 2], Intersection@@@Tuples[#, 2]]]&]], {n, 0, 4}]
(* Alternative: *)
a[n_] := Sum[Binomial[n, k]*A000798[[k+1]], {k, 0, n}];
a /@ Range[0, Length[A000798]-1] (* Jean-François Alcover, Dec 30 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jul 30 2019
STATUS
approved
