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!)
A036506 Number of labeled 4-trees with n nodes. 9
0, 0, 0, 1, 1, 15, 455, 20230, 1166886, 82031250, 6768679170, 639276644655, 67876292150095, 7992910154350121, 1032869077119140625, 145221924661653841820, 22060305511905816000860, 3599313659344525384083060, 627583654087024080928783956 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
REFERENCES
F. Harary and E. Palmer, Graphical Enumeration, (1973), p. 30, Problem 1.13(b) with k=4.
LINKS
FORMULA
a(n) = C(n,4)*(4*n-15)^(n-6).
Number of labeled k-trees on n nodes is binomial(n, k) * (k(n-k)+1)^(n-k-2).
PROG
(Python)
def A036506(n): return int(n*(n - 3)*(n - 2)*(n - 1)*(4*n - 15)**(n - 6)//24) # Chai Wah Wu, Feb 03 2022
CROSSREFS
Column 5 of A135021.
Cf. A000272 (labeled trees), A036361 (labeled 2-trees), A036362 (labeled 3-trees), A078793 (unlabeled 4-trees), A000055 (unlabeled trees), A054581 (unlabeled 2-trees).
Sequence in context: A020285 A041423 A041420 * A369828 A306675 A219561
KEYWORD
nonn
AUTHOR
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 1 03:54 EDT 2024. Contains 372148 sequences. (Running on oeis4.)