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!)
A248090 Square array read by antidiagonals: T(n,k) is the number of k-edge colored trees on vertex set [n] (n>=2, k>=2). 0
2, 3, 6, 4, 18, 24, 5, 36, 168, 120, 6, 60, 528, 2160, 720, 7, 90, 1200, 10920, 35640, 5040, 8, 126, 2280, 34200, 293760, 720720, 40320, 9, 168, 3864, 82800, 1275120, 9767520, 17297280, 362880, 10, 216, 6048, 170520, 3946320, 58968000, 387636480, 481178880, 3628800 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
T(n,2) = n! = A000142(n).
REFERENCES
R. P. Stanley, Enumerative Combinatorics, Cambridge, Vol. 2, 1999, Exercise 5.28, pp. 81, 124.
LINKS
M. Cho, D. Kim, S. Seo, H. Shin, Colored Prufer codes for k-edge colored trees, The Electronic Journal of Combinatorics, 11 (2004), #N10.
FORMULA
T(n,k) = k(n-2)!*binomial((k-1)n, n-2).
EXAMPLE
T(3,3) = 18; indeed, a 3-vertex tree ABC can be labeled in 6 ways and for each labeled tree the 2 edges can be colored in 3 ways (a and b, a and c, b and c).
The antidiagonals start:
2;
3, 6;
4, 18, 24;
5, 36, 168, 120;
6, 60, 528, 2160, 720;
MAPLE
T := proc(n, k) options operator, arrow: k*factorial(n-2)*binomial((k-1)*n, n-2) end proc: seq(seq(T(i, j-i), i = 2 .. j-2), j = 4 .. 12); # the command T(n, k) yields T(n, k).
CROSSREFS
Cf. A000142.
Sequence in context: A231451 A126063 A214352 * A229774 A137524 A282507
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Oct 27 2014
STATUS
approved

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 May 9 05:44 EDT 2024. Contains 372344 sequences. (Running on oeis4.)