[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A055309
Number of labeled rooted trees with n nodes and 8 leaves.
1
9, 22950, 9236700, 1731510000, 213034536000, 20154167953920, 1599866940672000, 112412172128256000, 7240640845838400000, 437993205197708160000, 25315591135036262860800
OFFSET
9,1
FORMULA
a(n) = n! * (n-8)^2*(n-7)^2*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(n-1)*(9*n^4 - 234*n^3 + 2211*n^2 - 8938*n + 12960)/234101145600. - Vaclav Kotesovec, Jul 25 2014
MATHEMATICA
Table[n! * (n-8)^2*(n-7)^2*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(n-1)*(9*n^4 - 234*n^3 + 2211*n^2 - 8938*n + 12960)/234101145600, {n, 9, 20}] (* Vaclav Kotesovec, Jul 25 2014 *)
PROG
(Magma) [Factorial(n)*(n-8)^2*(n-7)^2*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(n-1)*(9*n^4 - 234*n^3 + 2211*n^2 - 8938*n + 12960)/234101145600 : n in [9..25]]; // Vincenzo Librandi, Jul 25 2014
CROSSREFS
Column 8 of A055302.
Sequence in context: A140596 A280900 A333554 * A288940 A053931 A053921
KEYWORD
nonn
AUTHOR
Christian G. Bower, May 11 2000
STATUS
approved