MathDB
2022 Team P14

Source:

February 28, 2022
team

Problem Statement

Let a tree on mn+1mn + 1 vertices be (m,n)(m,n)-nice if the following conditions hold:
[*] m+1m + 1 colors are assigned to the nodes of the tree [*] for the first mm colors, there will be exactly nn nodes of color ii (1im)(1\le i \le m) [*] the root node of the tree will be the unique node of color m+1m+1. \item the (m,n)(m,n)-nice trees must also satisfy the condition that for any two non-root nodes i,ji, j, if the color of ii equals the color of jj, then the color of the parent of ii equals the color of the parent of jj. [*] Nodes of the same color are considered indistinguishable (swapping any two of them results in the same tree).
Let N(u,v,l)N(u,v,l) denote the number of (u,v)(u,v)-nice trees with ll leaves. Note that N(2,2,2)=2,N(2,2,3)=4,N(2,2,4)=6N(2,2,2) = 2, N(2,2,3) = 4, N(2,2,4) = 6. Compute the remainder when l=123789N(8,101,l)\sum_{l = 123}^{789} N(8,101,l) is divided by 101101.
Definition: Any rooted, ordered tree consists of some set of nodes, each of which has a (possibly empty) ordered list of children. Each node is the child of exactly one other node, with the exception of the root, which has not parent. There also cannot be any cycles of nodes which are all linearly children of each other.
Proposed by Advait Nene