OFFSET
1,4
REFERENCES
F. Harary and E. Palmer, Graphical Enumeration, (1973), p. 30.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..100
L. W. Beineke and R. E. Pipert, The number of labeled k-dimensional trees, J. Comb. Theory 6 (2) (1969) 200-205. Math. Rev. 38 #3182.
Allan Bickle, A Survey of Maximal k-degenerate Graphs and k-Trees, Theory and Applications of Graphs 0 1 (2024) Article 5.
T. Fowler, I. Gessel, G. Labelle and P. Leroux, The specification of 2-trees, Adv. Appl. Math. 28 (2) (2002) 145-168, eq. (18).
FORMULA
Number of labeled k-trees on n nodes is binomial(n, k) * (k(n-k)+1)^(n-k-2).
MATHEMATICA
Table[Binomial[n, 2](2n-3)^(n-4), {n, 20}] (* Harvey P. Dale, Nov 24 2011 *)
PROG
(Python)
def A036361(n): return int(n*(n - 1)*(2*n - 3)**(n - 4)//2) # Chai Wah Wu, Feb 03 2022
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
STATUS
approved