login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A327078 Binomial transform of A001187 (labeled connected graphs), if we assume A001187(1) = 0. 2
1, 1, 2, 8, 61, 969, 31738, 2069964, 267270033, 68629753641, 35171000942698, 36024807353574280, 73784587576805254653, 302228602363365451957793, 2475873310144021668263093202, 40564787336902311168400640561084 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Here we consider that there is no nonempty connected graph with one vertex (different from A001187 and A182100).
LINKS
FORMULA
a(n) = A182100(n) - n.
a(n) = A287689(n) + 1.
EXAMPLE
The a(0) = 1 through a(3) = 8 edge-sets:
{} {} {} {}
{{1,2}} {{1,2}}
{{1,3}}
{{2,3}}
{{1,2},{1,3}}
{{1,2},{2,3}}
{{1,3},{2,3}}
{{1,2},{1,3},{2,3}}
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, 2^(n*(n-1)/2)-add(
k*binomial(n, k)*2^((n-k)*(n-k-1)/2)*b(k), k=1..n-1)/n)
end:
a:= n-> add(b(n-j)*binomial(n, j), j=0..n-2)+1:
seq(a(n), n=0..18); # Alois P. Heinz, Aug 27 2019
MATHEMATICA
csm[s_]:=With[{c=Select[Tuples[Range[Length[s]], 2], And[OrderedQ[#], UnsameQ@@#, Length[Intersection@@s[[#]]]>0]&]}, If[c=={}, s, csm[Sort[Append[Delete[s, List/@c[[1]]], Union@@s[[c[[1]]]]]]]]];
Table[Length[Select[Subsets[Subsets[Range[n], {2}]], Length[csm[#]]<=1&]], {n, 0, 5}]
CROSSREFS
Sequence in context: A058862 A191482 A140722 * A332779 A116976 A132574
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 25 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 22:42 EDT 2024. Contains 372178 sequences. (Running on oeis4.)