The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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

%I #15 Aug 28 2019 15:36:50

%S 1,1,2,8,61,969,31738,2069964,267270033,68629753641,35171000942698,

%T 36024807353574280,73784587576805254653,302228602363365451957793,

%U 2475873310144021668263093202,40564787336902311168400640561084

%N Binomial transform of A001187 (labeled connected graphs), if we assume A001187(1) = 0.

%C Here we consider that there is no nonempty connected graph with one vertex (different from A001187 and A182100).

%F a(n) = A182100(n) - n.

%F a(n) = A287689(n) + 1.

%e The a(0) = 1 through a(3) = 8 edge-sets:

%e {} {} {} {}

%e {{1,2}} {{1,2}}

%e {{1,3}}

%e {{2,3}}

%e {{1,2},{1,3}}

%e {{1,2},{2,3}}

%e {{1,3},{2,3}}

%e {{1,2},{1,3},{2,3}}

%p b:= proc(n) option remember; `if`(n=0, 1, 2^(n*(n-1)/2)-add(

%p k*binomial(n, k)*2^((n-k)*(n-k-1)/2)*b(k), k=1..n-1)/n)

%p end:

%p a:= n-> add(b(n-j)*binomial(n, j), j=0..n-2)+1:

%p seq(a(n), n=0..18); # _Alois P. Heinz_, Aug 27 2019

%t 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]]]]]]]]];

%t Table[Length[Select[Subsets[Subsets[Range[n],{2}]],Length[csm[#]]<=1&]],{n,0,5}]

%Y Cf. A001187, A006129, A054592, A182100, A287689, A327075.

%K nonn

%O 0,3

%A _Gus Wiseman_, Aug 25 2019

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 June 1 05:22 EDT 2024. Contains 373010 sequences. (Running on oeis4.)