cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A368599 Number of non-isomorphic n-element sets of singletons or pairs of elements of {1..n} with union {1..n}, or unlabeled loop-graphs with n edges covering n vertices.

This page as a plain text file.
%I A368599 #15 Mar 23 2024 22:13:05
%S A368599 1,1,2,5,13,34,97,277,825,2486,7643,23772,74989,238933,769488,2500758,
%T A368599 8199828,27106647,90316944,303182461,1025139840,3490606305,
%U A368599 11967066094,41302863014,143493606215,501772078429,1765928732426,6254738346969,22294413256484,79968425399831
%N A368599 Number of non-isomorphic n-element sets of singletons or pairs of elements of {1..n} with union {1..n}, or unlabeled loop-graphs with n edges covering n vertices.
%C A368599 It doesn't matter for this sequence whether we use loops such as {x,x} or half-loops such as {x}.
%H A368599 Andrew Howroyd, <a href="/A368599/b368599.txt">Table of n, a(n) for n = 0..50</a>
%H A368599 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/GraphLoop.html">Graph Loop</a>.
%F A368599 a(n) = A070166(n,n) - A070166(n-1,n) for n > 0. - _Andrew Howroyd_, Jan 09 2024
%e A368599 The a(0) = 1 through a(4) = 13 set-systems:
%e A368599   {}  {{1}}  {{1},{2}}    {{1},{2},{3}}        {{1},{2},{3},{4}}
%e A368599              {{1},{1,2}}  {{1},{2},{1,3}}      {{1},{2},{3},{1,4}}
%e A368599                           {{1},{1,2},{1,3}}    {{1},{2},{1,2},{3,4}}
%e A368599                           {{1},{1,2},{2,3}}    {{1},{2},{1,3},{1,4}}
%e A368599                           {{1,2},{1,3},{2,3}}  {{1},{2},{1,3},{2,4}}
%e A368599                                                {{1},{2},{1,3},{3,4}}
%e A368599                                                {{1},{1,2},{1,3},{1,4}}
%e A368599                                                {{1},{1,2},{1,3},{2,4}}
%e A368599                                                {{1},{1,2},{2,3},{2,4}}
%e A368599                                                {{1},{1,2},{2,3},{3,4}}
%e A368599                                                {{1},{2,3},{2,4},{3,4}}
%e A368599                                                {{1,2},{1,3},{1,4},{2,3}}
%e A368599                                                {{1,2},{1,3},{2,4},{3,4}}
%t A368599 brute[m_]:=First[Sort[Table[Sort[Sort /@ (m/.Rule@@@Table[{(Union@@m)[[i]],p[[i]]}, {i,Length[p]}])], {p,Permutations[Range[Length[Union@@m]]]}]]];
%t A368599 Table[Length[Union[brute /@ Select[Subsets[Subsets[Range[n],{1,2}],{n}], Union@@#==Range[n]&]]],{n,0,5}]
%o A368599 (PARI) a(n) = polcoef(G(n, O(x*x^n)) - if(n, G(n-1, O(x*x^n))), n) \\ G defined in A070166. - _Andrew Howroyd_, Jan 09 2024
%Y A368599 For any number of edges we have A000666, A054921, A322700.
%Y A368599 For any number of edges of any size we have A055621, non-covering A000612.
%Y A368599 For edges of any size we have A368186, covering case of A368731.
%Y A368599 The labeled version is A368597, covering case of A014068.
%Y A368599 This is the covering case of A368598.
%Y A368599 A000085 counts set partitions into singletons or pairs.
%Y A368599 A001515 counts length-n set partitions into singletons or pairs.
%Y A368599 A100861 counts set partitions into singletons or pairs by number of pairs.
%Y A368599 A111924 counts set partitions into singletons or pairs by length.
%Y A368599 Cf. A007716, A007717, A058891, A070166, A122848, A283877, A302545, A320663, A322661, A339741, A339887, A339888.
%K A368599 nonn
%O A368599 0,3
%A A368599 _Gus Wiseman_, Jan 06 2024
%E A368599 Terms a(7) and beyond from _Andrew Howroyd_, Jan 09 2024