OFFSET
0,5
COMMENTS
The complement of a set partition pi of {1, ..., n} is defined as n + 1 - pi (elementwise) on page 3 of Callan. For example, the complement of {{1,5},{2},{3,6},{4}} is {{1,4},{2,6},{3},{5}}.
LINKS
David Callan, On conjugates for set partitions and integer compositions [math.CO].
EXAMPLE
The a(3) = 1 through a(6) = 9 self-complementary set partitions with no cyclical adjacencies:
{{1}{2}{3}} {{13}{24}} {{14}{25}{3}} {{135}{246}}
{{1}{2}{3}{4}} {{1}{24}{3}{5}} {{13}{25}{46}}
{{1}{2}{3}{4}{5}} {{14}{25}{36}}
{{1}{24}{35}{6}}
{{13}{2}{46}{5}}
{{14}{2}{36}{5}}
{{15}{26}{3}{4}}
{{1}{25}{3}{4}{6}}
{{1}{2}{3}{4}{5}{6}}
MATHEMATICA
sps[{}]:={{}}; sps[set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@sps[Complement[set, s]]]/@Cases[Subsets[set], {i, ___}];
cmp[stn_]:=Union[Sort[Max@@Join@@stn+1-#]&/@stn];
Table[Select[sps[Range[n]], And[cmp[#]==Sort[#], Total[If[First[#]==1&&Last[#]==n, 1, 0]+Count[Subtract@@@Partition[#, 2, 1], -1]&/@#]==0]&]//Length, {n, 0, 10}]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Gus Wiseman, Feb 12 2019
STATUS
approved