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!)
A249632 Triangular array read by rows. T(n,k) is the number of labeled trees with black and white nodes having exactly k black nodes, n>=0, 0<=k<=n. 0

%I #12 Apr 26 2016 12:37:41

%S 1,1,1,1,2,1,3,9,9,3,16,64,96,64,16,125,625,1250,1250,625,125,1296,

%T 7776,19440,25920,19440,7776,1296,16807,117649,352947,588245,588245,

%U 352947,117649,16807,262144,2097152,7340032,14680064,18350080,14680064,7340032,2097152,262144

%N Triangular array read by rows. T(n,k) is the number of labeled trees with black and white nodes having exactly k black nodes, n>=0, 0<=k<=n.

%C Row sums = A038058.

%C T(n,n) = T(n,0) = n^(n-2) free trees A000272.

%C T(n,n-1) = T(n,1) = n^(n-1) rooted trees A000169.

%C T(n,2) = A081131.

%D F. Harary and E. Palmer, Graphical Enumeration, Academic Press,1973, page 30, exercise 1.10.

%F E.g.f.: A(x + y*x) where A(x) is the e.g.f. for A000272.

%e 1,

%e 1, 1,

%e 1, 2, 1,

%e 3, 9, 9, 3,

%e 16, 64, 96, 64, 16,

%e 125, 625, 1250, 1250, 625, 125,

%e 1296, 7776, 19440, 25920, 19440, 7776, 1296

%t nn = 6; f[x_] := Sum[n^(n - 2) x^n/n!, {n, 1, nn}];

%t Map[Select[#, # > 0 &] &,

%t Range[0, nn]! CoefficientList[

%t Series[f[x + y x] + 1, {x, 0, nn}], {x, y}]] // Grid

%K nonn,tabl

%O 0,5

%A _Geoffrey Critzer_, Nov 02 2014

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