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.

A304175 Number of leaf-balanced rooted plane trees with n nodes.

This page as a plain text file.
%I A304175 #12 Dec 14 2020 01:37:32
%S A304175 1,1,2,5,12,27,59,128,277,597,1280,2730,5794,12248,25836,54508,115222,
%T A304175 244144,518104,1099499,2330326,4930089,10415135,21992400,46470911,
%U A304175 98353146,208580686,443186181,942988423,2007981801,4276830431,9109431322,19404918449,41357252072,88236092543
%N A304175 Number of leaf-balanced rooted plane trees with n nodes.
%C A304175 A rooted plane tree is leaf-balanced if every branch of the root has the same number of leaves, and every branch of the root is itself leaf-balanced.
%H A304175 Andrew Howroyd, <a href="/A304175/b304175.txt">Table of n, a(n) for n = 1..500</a>
%e A304175 The a(5) = 12 leaf-balanced plane trees:
%e A304175   ((((o)))), (((oo))), (((o)o)), ((o(o))), ((ooo)),
%e A304175   (((o))o), (o((o))), ((o)(o)),
%e A304175   ((o)oo), (o(o)o), (oo(o)),
%e A304175   (oooo).
%e A304175 Missing from this list are ((oo)o) and (o(oo)).
%t A304175 lbplane[n_]:=If[n==1,{{}},Join@@Table[Select[Tuples[lbplane/@c],SameQ@@(Count[#,{},{0,Infinity}]&/@#)&],{c,Join@@Permutations/@IntegerPartitions[n-1]}]];
%t A304175 Table[Length[lbplane[n]],{n,10}]
%o A304175 (PARI) seq(n)={my(v=vector(n)); v[1]=x/(1-x) + O(x*x^n); for(k=2, n, v[k]=x*sumdiv(k, d, if(d<k, v[d]^(k/d)))/(1-x) ); Vec(vecsum(v) + O(x*x^n))} \\ _Andrew Howroyd_, Dec 13 2020
%Y A304175 Cf. A000081, A000108, A001003, A001006, A003238, A007853, A126120, A291442, A291443, A304173.
%K A304175 nonn
%O A304175 1,3
%A A304175 _Gus Wiseman_, Aug 16 2018
%E A304175 Terms a(17) and beyond from _Andrew Howroyd_, Dec 13 2020