Problem 936 题目发布于 2025-03-15 翻译更新于 2025-03-16 Problem 936 Peerless TreesA peerless tree is a tree with no edge between two vertices of the same degree. Let P(n) be the number of peerless trees on n unlabelled vertices. There are six of these trees on seven unlabelled vertices, P(7)=6, shown below. Define S(N)=∑n=3NP(n). You are given S(10)=74. Find S(50). 无同树无同树是指没有连接相同度数顶点的边的树。记P(n)为包含n个无标记顶点的无同树的数量。 包含七个无标记顶点的无同树有六棵,即P(7)=6,如下图所示。 定义S(N)=∑n=3NP(n)。已知S(10)=74。 求S(50)。
Gitalking ...