Identifier
- St000328: Ordered trees ⟶ ℤ
Values
[[]] => 1
[[],[]] => 2
[[[]]] => 1
[[],[],[]] => 3
[[],[[]]] => 2
[[[]],[]] => 2
[[[],[]]] => 2
[[[[]]]] => 1
[[],[],[],[]] => 4
[[],[],[[]]] => 3
[[],[[]],[]] => 3
[[],[[],[]]] => 2
[[],[[[]]]] => 2
[[[]],[],[]] => 3
[[[]],[[]]] => 2
[[[],[]],[]] => 2
[[[[]]],[]] => 2
[[[],[],[]]] => 3
[[[],[[]]]] => 2
[[[[]],[]]] => 2
[[[[],[]]]] => 2
[[[[[]]]]] => 1
[[],[],[],[],[]] => 5
[[],[],[],[[]]] => 4
[[],[],[[]],[]] => 4
[[],[],[[],[]]] => 3
[[],[],[[[]]]] => 3
[[],[[]],[],[]] => 4
[[],[[]],[[]]] => 3
[[],[[],[]],[]] => 3
[[],[[[]]],[]] => 3
[[],[[],[],[]]] => 3
[[],[[],[[]]]] => 2
[[],[[[]],[]]] => 2
[[],[[[],[]]]] => 2
[[],[[[[]]]]] => 2
[[[]],[],[],[]] => 4
[[[]],[],[[]]] => 3
[[[]],[[]],[]] => 3
[[[]],[[],[]]] => 2
[[[]],[[[]]]] => 2
[[[],[]],[],[]] => 3
[[[[]]],[],[]] => 3
[[[],[]],[[]]] => 2
[[[[]]],[[]]] => 2
[[[],[],[]],[]] => 3
[[[],[[]]],[]] => 2
[[[[]],[]],[]] => 2
[[[[],[]]],[]] => 2
[[[[[]]]],[]] => 2
[[[],[],[],[]]] => 4
[[[],[],[[]]]] => 3
[[[],[[]],[]]] => 3
[[[],[[],[]]]] => 2
[[[],[[[]]]]] => 2
[[[[]],[],[]]] => 3
[[[[]],[[]]]] => 2
[[[[],[]],[]]] => 2
[[[[[]]],[]]] => 2
[[[[],[],[]]]] => 3
[[[[],[[]]]]] => 2
[[[[[]],[]]]] => 2
[[[[[],[]]]]] => 2
[[[[[[]]]]]] => 1
[[],[],[],[],[],[]] => 6
[[],[],[],[],[[]]] => 5
[[],[],[],[[]],[]] => 5
[[],[],[],[[],[]]] => 4
[[],[],[],[[[]]]] => 4
[[],[],[[]],[],[]] => 5
[[],[],[[]],[[]]] => 4
[[],[],[[],[]],[]] => 4
[[],[],[[[]]],[]] => 4
[[],[],[[],[],[]]] => 3
[[],[],[[],[[]]]] => 3
[[],[],[[[]],[]]] => 3
[[],[],[[[],[]]]] => 3
[[],[],[[[[]]]]] => 3
[[],[[]],[],[],[]] => 5
[[],[[]],[],[[]]] => 4
[[],[[]],[[]],[]] => 4
[[],[[]],[[],[]]] => 3
[[],[[]],[[[]]]] => 3
[[],[[],[]],[],[]] => 4
[[],[[[]]],[],[]] => 4
[[],[[],[]],[[]]] => 3
[[],[[[]]],[[]]] => 3
[[],[[],[],[]],[]] => 3
[[],[[],[[]]],[]] => 3
[[],[[[]],[]],[]] => 3
[[],[[[],[]]],[]] => 3
[[],[[[[]]]],[]] => 3
[[],[[],[],[],[]]] => 4
[[],[[],[],[[]]]] => 3
[[],[[],[[]],[]]] => 3
[[],[[],[[],[]]]] => 2
[[],[[],[[[]]]]] => 2
[[],[[[]],[],[]]] => 3
[[],[[[]],[[]]]] => 2
[[],[[[],[]],[]]] => 2
[[],[[[[]]],[]]] => 2
>>> Load all 196 entries. <<<
search for individual values
searching the database for the individual values of this statistic
/
search for generating function
searching the database for statistics with the same generating function
Description
The maximum number of child nodes in a tree.
Code
def statistic(t):
nodes = []
for node in t:
nodes.append(node)
maxNode = 0
if (len(nodes) > 0):
for node in nodes:
tempMax = statistic(node)
if(tempMax > maxNode):
maxNode = tempMax
if (len(nodes) > maxNode):
return len(nodes)
else:
return maxNode
Created
Dec 16, 2015 at 06:18 by Cole Kainz
Updated
Dec 16, 2015 at 20:14 by Cole Kainz
searching the database
Sorry, this statistic was not found in the database
or
add this statistic to the database – it's very simple and we need your support!