login
A253571
Total number of even outdegree nodes among all labeled rooted trees on n nodes.
1
1, 2, 15, 144, 1765, 26400, 466459, 9508352, 219651849, 5671088640, 161833149511, 5058050224128, 171837337744813, 6304955850432512, 248477268083174355, 10467916801317273600, 469451601966727952401, 22329535184262444220416, 1122809130124800181976575
OFFSET
1,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..380 (first 100 terms from Marko Riedel)
FORMULA
E.g.f.: (T^2+z^2)/(2*T*(1-T)) where T is the labeled tree function defined by T = z exp T.
EXAMPLE
When n=3 there are two types of trees: rooted paths on three nodes which have one even degree node (the bottom one with zero children), giving 6*1, and trees consisting of a node with two children, of which there are 3, and they have 3 even degree nodes, giving 3*3 for a total of 6*1 + 3*3 = 15.
MAPLE
a:= n-> n!*coeff(series((T->(T^2+x^2)/
(2*T*(1-T)))(-LambertW(-x)), x, n+2), x, n):
seq(a(n), n=1..30); # Alois P. Heinz, Jan 03 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Marko Riedel, Jan 03 2015
STATUS
approved