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!)
A317100 Number of series-reduced planted achiral trees with n leaves spanning an initial interval of positive integers. 4

%I #13 Sep 07 2019 04:15:22

%S 1,3,5,12,17,41,65,144,262,533,1025,2110,4097,8261,16407,32928,65537,

%T 131384,262145,524854,1048647,2098181,4194305,8390924,16777234,

%U 33558533,67109132,134226070,268435457,536887919,1073741825,2147516736,4294968327,8590000133

%N Number of series-reduced planted achiral trees with n leaves spanning an initial interval of positive integers.

%C In these trees, achiral means that all branches directly under any given node that is not a leaf or a cover of leaves are equal, and series-reduced means that every node that is not a leaf or a cover of leaves has at least two branches.

%H Andrew Howroyd, <a href="/A317100/b317100.txt">Table of n, a(n) for n = 1..200</a>

%F a(n) ~ 2^(n-1). - _Vaclav Kotesovec_, Sep 07 2019

%e The a(4) = 12 trees:

%e (1111), ((11)(11)), (((1)(1))((1)(1))), ((1)(1)(1)(1)),

%e (1222),

%e (1122), ((12)(12)),

%e (1112),

%e (1233),

%e (1223),

%e (1123),

%e (1234).

%t allnorm[n_Integer]:=Function[s,Array[Count[s,y_/;y<=#]+1&,n]]/@Subsets[Range[n-1]+1];

%t b[n_]:=1+Sum[b[n/d],{d,Rest[Divisors[n]]}];

%t a[n_]:=Sum[b[GCD@@Length/@Split[ptn]],{ptn,allnorm[n]}];

%t Array[a,10]

%o (PARI) seq(n)={my(v=vector(n)); for(n=1, n, v[n]=2^(n-1) + sumdiv(n, d, v[d])); v} \\ _Andrew Howroyd_, Aug 19 2018

%Y Cf. A001678, A003238, A052409, A052410, A067824, A167865, A168532, A214577, A289078, A294336, A316782, A317099.

%K nonn

%O 1,2

%A _Gus Wiseman_, Aug 01 2018

%E Terms a(21) and beyond from _Andrew Howroyd_, Aug 19 2018

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 11 17:16 EDT 2024. Contains 373315 sequences. (Running on oeis4.)