A317785 Number of locally connected rooted trees with n nodes.
1, 1, 1, 1, 2, 2, 4, 4, 7, 8, 12, 14, 21, 24, 34, 42, 55, 67, 91, 109, 144, 177, 228, 281, 366, 448, 579, 720, 916, 1142
Offset: 1
Examples
The a(11) = 12 locally connected rooted trees: ((((((((((o)))))))))) ((((((((o)(o)))))))) (((((((o))((o))))))) ((((((o)))(((o)))))) (((((o))))((((o))))) ((((((o)(o)(o)))))) (((((o))((o)(o))))) ((((o))((o))((o)))) ((((o)(o)(o)(o)))) (((o))((o)(o)(o))) (((o)(o))((o)(o))) ((o)(o)(o)(o)(o))
Links
- Gus Wiseman, All 42 locally connected rooted trees with 16 nodes.
Crossrefs
Programs
-
Mathematica
multijoin[mss__]:=Join@@Table[Table[x, {Max[Count[#, x]&/@{mss}]}], {x, Union[mss]}]; csm[s_]:=With[{c=Select[Tuples[Range[Length[s]],2],And[OrderedQ[#],UnsameQ@@#,Length[Intersection@@s[[#]]]>0]&]},If[c=={},s,csm[Union[Append[Delete[s,List/@c[[1]]],multijoin@@s[[c[[1]]]]]]]]]; rurt[n_]:=If[n==1,{{}},Join@@Table[Select[Union[Sort/@Tuples[rurt/@ptn]],Or[Length[#]==1,Length[csm[#]]==1]&],{ptn,IntegerPartitions[n-1]}]]; Table[Length[rurt[n]],{n,10}]
Comments