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!)
A191516 Irregular triangle read by rows: a(n,k) is the number of edges with degree k (k>=1) in the rooted tree with Matula-Goebel number n (n>=3). 1

%I #14 Oct 23 2021 21:18:29

%S 2,2,2,1,2,1,0,3,0,3,2,2,2,2,2,2,1,2,1,1,2,1,1,2,1,2,3,0,0,4,1,2,1,2,

%T 1,2,0,0,4,1,3,1,1,3,1,2,3,2,1,2,1,0,3,1,2,4,2,1,2,3,0,3,0,4,0,1,1,3,

%U 1,2,2,2,2,3,0,0,0,5,2,4,1,3,1,1,4,1,2,0,2,2,1,0,3,1,1,0,3,1,2,2,2,1,1,3,1,2,1,2,1,3,1,1

%N Irregular triangle read by rows: a(n,k) is the number of edges with degree k (k>=1) in the rooted tree with Matula-Goebel number n (n>=3).

%C The degree of an edge is the number of edges adjacent to it.

%C The Matula-Goebel number of a rooted tree can be defined in the following recursive manner: to the one-vertex tree there corresponds the number 1; to a tree T with root degree 1 there corresponds the t-th prime number, where t is the Matula-Goebel number of the tree obtained from T by deleting the edge emanating from the root; to a tree T with root degree m>=2 there corresponds the product of the Matula-Goebel numbers of the m branches of T.

%C Sum of entries in row n = A196050(n) (= number of edges).

%C Sum(k*a(n,k), k>=1) = A198332(n) (=sum of edge degrees (the Platt index)).

%D A. T. Balaban, Chemical graphs, Theoret. Chim. Acta (Berl.) 53, 355-375, 1979.

%D F. Goebel, On a 1-1-correspondence between rooted trees and natural numbers, J. Combin. Theory, B 29 (1980), 141-143.

%D I. Gutman and A. Ivic, On Matula numbers, Discrete Math., 150, 1996, 131-142.

%D I. Gutman and Yeong-Nan Yeh, Deducing properties of trees from their Matula numbers, Publ. Inst. Math., 53 (67), 1993, 17-22.

%D D. W. Matula, A natural rooted tree enumeration by prime factorization, SIAM Review, 10, 1968, 273.

%D R. Todeschini and V. Consonni, Handbook of Molecular Descriptors, Wiley-VCH, 2000.

%H E. Deutsch, <a href="http://arxiv.org/abs/1111.4288">Rooted tree statistics from Matula numbers</a>, arXiv:1111.4288

%H <a href="/index/Mat#matula">Index entries for sequences related to Matula-Goebel numbers</a>

%F Let f(n)=F(n,x) be the generating polynomial of the edges of the rooted tree with Matula-Goebel number n, with respect to edge-degree. Write f(n)=g(n)+h(n), where g(n) is over the edges emanating from the root and h(n) is over the remaining edges. We have g(1)=0, h(1)=0; if n = p(t) (=the t-th prime), then g(n)=x^G(t), h(n)=xg(t)+h(t); if n=rs (r,s>=2), then g(n)=x^G(s)*g(r) + x^G(r)*g(s), h(n)=h(r)+h(s). G(m) denotes the number of prime divisors of m counted with multiplicities.

%e Row 5 is 2,1 because the rooted tree with Matula-Goebel number 5 is the path tree ABCD on 4 vertices; AB and CD have degree 1 and BC has degree 2.

%e Row 7 is 0,3 because the rooted tree with Matula-Goebel number 7 is Y, where no edge has degree 1 and all 3 edges have degree 2.

%e Triangle starts:

%e 2;

%e 2;

%e 2,1;

%e 2,1;

%e 0,3;

%e 0,3;

%e 2,2;

%p with(numtheory): f := proc (n) local r, s,g,h: r := proc (n) options operator, arrow: op(1, factorset(n)) end proc: s := proc (n) options operator, arrow: n/r(n) end proc: g:=proc(n) if n = 1 then 0 elif bigomega(n) = 1 then x^(bigomega(pi(n))) else x^(bigomega(s(n)))*g(r(n))+x^(bigomega(r(n)))*g(s(n)) fi end: h:=proc(n) if n=1 then 0 elif bigomega(n)=1 then x*g(pi(n))+h(pi(n)) else h(r(n))+h(s(n)) fi end: sort(expand(g(n)+h(n))) end: for n from 3 to 42 do seq(coeff(f(n),x,j),j=1..degree(f(n))) od; # yields sequence in triangular form

%Y Cf. A196050, A198332.

%K nonn,tabf

%O 3,1

%A _Emeric Deutsch_, Dec 15 2011

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 April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)