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

A055316
Number of labeled trees with n nodes and 4 leaves.
1
5, 210, 5250, 109200, 2116800, 40219200, 768398400, 14968800000, 299675376000, 6193291104000, 132456516192000, 2935293064704000, 67432408243200000, 1605928737853440000, 39636028549877760000
OFFSET
5,1
FORMULA
(n!/4!)*stirling2(n-2, n-4). - Vladeta Jovovic, Jan 28 2004
a(n) = n! * (n-4)*(n-3)*(n-2)*(3*n-11)/576. - Vaclav Kotesovec, Jul 25 2014
MATHEMATICA
Table[n! * (n-4)*(n-3)*(n-2)*(3*n-11)/576, {n, 5, 20}] (* Vaclav Kotesovec, Jul 25 2014 *)
PROG
(Magma) [Factorial(n)*(n-4)*(n-3)*(n-2)*(3*n-11)/576: n in [5..25]]; // Vincenzo Librandi, Jul 25 2014
CROSSREFS
Column 4 of A055314.
Sequence in context: A144139 A020541 A006413 * A203470 A165208 A293652
KEYWORD
nonn
AUTHOR
Christian G. Bower, May 11 2000
STATUS
approved