Identifier
Values
[1] => 1
[1,1] => 1
[2] => 2
[1,1,1] => 1
[1,2] => 2
[2,1] => 2
[3] => 3
[1,1,1,1] => 1
[1,1,2] => 2
[1,2,1] => 2
[1,3] => 3
[2,1,1] => 2
[2,2] => 2
[3,1] => 3
[4] => 4
[1,1,1,1,1] => 1
[1,1,1,2] => 2
[1,1,2,1] => 2
[1,1,3] => 3
[1,2,1,1] => 2
[1,2,2] => 2
[1,3,1] => 3
[1,4] => 4
[2,1,1,1] => 2
[2,1,2] => 3
[2,2,1] => 2
[2,3] => 3
[3,1,1] => 3
[3,2] => 3
[4,1] => 4
[5] => 5
[1,1,1,1,1,1] => 1
[1,1,1,1,2] => 2
[1,1,1,2,1] => 2
[1,1,1,3] => 3
[1,1,2,1,1] => 2
[1,1,2,2] => 2
[1,1,3,1] => 3
[1,1,4] => 4
[1,2,1,1,1] => 2
[1,2,1,2] => 3
[1,2,2,1] => 2
[1,2,3] => 3
[1,3,1,1] => 3
[1,3,2] => 3
[1,4,1] => 4
[1,5] => 5
[2,1,1,1,1] => 2
[2,1,1,2] => 3
[2,1,2,1] => 3
[2,1,3] => 4
[2,2,1,1] => 2
[2,2,2] => 2
[2,3,1] => 3
[2,4] => 4
[3,1,1,1] => 3
[3,1,2] => 4
[3,2,1] => 3
[3,3] => 3
[4,1,1] => 4
[4,2] => 4
[5,1] => 5
[6] => 6
[1,1,1,1,1,1,1] => 1
[1,1,1,1,1,2] => 2
[1,1,1,1,2,1] => 2
[1,1,1,1,3] => 3
[1,1,1,2,1,1] => 2
[1,1,1,2,2] => 2
[1,1,1,3,1] => 3
[1,1,1,4] => 4
[1,1,2,1,1,1] => 2
[1,1,2,1,2] => 3
[1,1,2,2,1] => 2
[1,1,2,3] => 3
[1,1,3,1,1] => 3
[1,1,3,2] => 3
[1,1,4,1] => 4
[1,1,5] => 5
[1,2,1,1,1,1] => 2
[1,2,1,1,2] => 3
[1,2,1,2,1] => 3
[1,2,1,3] => 4
[1,2,2,1,1] => 2
[1,2,2,2] => 2
[1,2,3,1] => 3
[1,2,4] => 4
[1,3,1,1,1] => 3
[1,3,1,2] => 4
[1,3,2,1] => 3
[1,3,3] => 3
[1,4,1,1] => 4
[1,4,2] => 4
[1,5,1] => 5
[1,6] => 6
[2,1,1,1,1,1] => 2
[2,1,1,1,2] => 3
[2,1,1,2,1] => 3
[2,1,1,3] => 4
[2,1,2,1,1] => 3
[2,1,2,2] => 3
>>> Load all 511 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 number of up steps of the associated bargraph.
Interpret the composition as the sequence of heights of the bars of a bargraph. This statistic is the number of up steps.
Interpret the composition as the sequence of heights of the bars of a bargraph. This statistic is the number of up steps.
References
[1] Deutsch, E., Elizalde, S. A bijection between bargraphs and Dyck paths arXiv:1705.05984
Code
def statistic(c):
if len(c) == 0:
return 0
U = c[0]
for i in range(1, len(c)):
if c[i] > c[i-1]:
U += c[i]-c[i-1]
return U
Created
May 18, 2017 at 09:45 by Martin Rubey
Updated
Nov 19, 2017 at 22:04 by Christian Stump
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!