Identifier
Values
[1] => 0
[1,1] => 0
[2] => 0
[1,1,1] => 0
[1,2] => 1
[2,1] => 0
[3] => 0
[1,1,1,1] => 0
[1,1,2] => 1
[1,2,1] => 1
[1,3] => 1
[2,1,1] => 0
[2,2] => 0
[3,1] => 0
[4] => 0
[1,1,1,1,1] => 0
[1,1,1,2] => 1
[1,1,2,1] => 1
[1,1,3] => 1
[1,2,1,1] => 1
[1,2,2] => 1
[1,3,1] => 1
[1,4] => 1
[2,1,1,1] => 0
[2,1,2] => 1
[2,2,1] => 0
[2,3] => 1
[3,1,1] => 0
[3,2] => 0
[4,1] => 0
[5] => 0
[1,1,1,1,1,1] => 0
[1,1,1,1,2] => 1
[1,1,1,2,1] => 1
[1,1,1,3] => 1
[1,1,2,1,1] => 1
[1,1,2,2] => 1
[1,1,3,1] => 1
[1,1,4] => 1
[1,2,1,1,1] => 1
[1,2,1,2] => 2
[1,2,2,1] => 1
[1,2,3] => 2
[1,3,1,1] => 1
[1,3,2] => 1
[1,4,1] => 1
[1,5] => 1
[2,1,1,1,1] => 0
[2,1,1,2] => 1
[2,1,2,1] => 1
[2,1,3] => 1
[2,2,1,1] => 0
[2,2,2] => 0
[2,3,1] => 1
[2,4] => 1
[3,1,1,1] => 0
[3,1,2] => 1
[3,2,1] => 0
[3,3] => 0
[4,1,1] => 0
[4,2] => 0
[5,1] => 0
[6] => 0
[1,1,1,1,1,1,1] => 0
[1,1,1,1,1,2] => 1
[1,1,1,1,2,1] => 1
[1,1,1,1,3] => 1
[1,1,1,2,1,1] => 1
[1,1,1,2,2] => 1
[1,1,1,3,1] => 1
[1,1,1,4] => 1
[1,1,2,1,1,1] => 1
[1,1,2,1,2] => 2
[1,1,2,2,1] => 1
[1,1,2,3] => 2
[1,1,3,1,1] => 1
[1,1,3,2] => 1
[1,1,4,1] => 1
[1,1,5] => 1
[1,2,1,1,1,1] => 1
[1,2,1,1,2] => 2
[1,2,1,2,1] => 2
[1,2,1,3] => 2
[1,2,2,1,1] => 1
[1,2,2,2] => 1
[1,2,3,1] => 2
[1,2,4] => 2
[1,3,1,1,1] => 1
[1,3,1,2] => 2
[1,3,2,1] => 1
[1,3,3] => 1
[1,4,1,1] => 1
[1,4,2] => 1
[1,5,1] => 1
[1,6] => 1
[2,1,1,1,1,1] => 0
[2,1,1,1,2] => 1
[2,1,1,2,1] => 1
[2,1,1,3] => 1
[2,1,2,1,1] => 1
[2,1,2,2] => 1
>>> 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 ascents in an integer composition.
A composition has an ascent, or rise, at position $i$ if $a_i < a_{i+1}$.
A composition has an ascent, or rise, at position $i$ if $a_i < a_{i+1}$.
References
[1] Carlitz, L. Enumeration of compositions by rises, falls and levels MathSciNet:0450078
Code
def statistic(pi):
res = 0
for i in range(len(pi)-1):
if pi[i] < pi[i+1]:
res += 1
return res
Created
Apr 08, 2017 at 22:12 by Martin Rubey
Updated
Nov 06, 2017 at 23:38 by Martin Rubey
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!