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”).

A055322
Number of labeled trees with n nodes and 10 leaves.
1
11, 67452, 48907716, 14690700024, 2705763420360, 365758901988480, 40063975278687360, 3778762636904935680, 319426407028867057920, 24881574582258352358400, 1822046744492620226380800
OFFSET
11,1
FORMULA
a(n) = (n!/10!)*Stirling2(n-2, n-10). - Vladeta Jovovic, Jan 28 2004
a(n) = n! * (n-10)*(n-9)*(n-8)*(n-7)*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(135*n^7 - 8190*n^6 + 211050*n^5 - 2991660*n^4 + 25164055*n^3 - 125425110*n^2 + 342426104*n - 394205184) / 5056584744960000. - Vaclav Kotesovec, Jul 25 2014
MATHEMATICA
Table[n! * (n-10)*(n-9)*(n-8)*(n-7)*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(135*n^7 - 8190*n^6 + 211050*n^5 - 2991660*n^4 + 25164055*n^3 - 125425110*n^2 + 342426104*n - 394205184) / 5056584744960000, {n, 11, 25}] (* Vaclav Kotesovec, Jul 25 2014 *)
PROG
(Magma) [Factorial(n)*(n-10)*(n-9)*(n-8)*(n-7)*(n-6)*(n-5)*(n-4)*(n-3)*(n-2)*(135*n^7 - 8190*n^6 + 211050*n^5 - 2991660*n^4 + 25164055*n^3 - 125425110*n^2 + 342426104*n - 394205184) / 5056584744960000: n in [11..25]]; // Vincenzo Librandi, Jul 25 2014
CROSSREFS
Column 10 of A055314.
Sequence in context: A295176 A337248 A102367 * A348644 A165934 A110780
KEYWORD
nonn
AUTHOR
Christian G. Bower, May 11 2000
STATUS
approved