Identifier
- St001730: Binary words ⟶ ℤ
Values
0 => 0
1 => 0
00 => 0
01 => 0
10 => 0
11 => 0
000 => 0
001 => 0
010 => 0
011 => 1
100 => 1
101 => 0
110 => 0
111 => 0
0000 => 0
0001 => 0
0010 => 0
0011 => 0
0100 => 0
0101 => 0
0110 => 1
0111 => 1
1000 => 1
1001 => 1
1010 => 0
1011 => 0
1100 => 0
1101 => 0
1110 => 0
1111 => 0
00000 => 0
00001 => 0
00010 => 0
00011 => 0
00100 => 0
00101 => 0
00110 => 0
00111 => 1
01000 => 0
01001 => 0
01010 => 0
01011 => 1
01100 => 2
01101 => 1
01110 => 1
01111 => 1
10000 => 1
10001 => 1
10010 => 1
10011 => 2
10100 => 1
10101 => 0
10110 => 0
10111 => 0
11000 => 1
11001 => 0
11010 => 0
11011 => 0
11100 => 0
11101 => 0
11110 => 0
11111 => 0
000000 => 0
000001 => 0
000010 => 0
000011 => 0
000100 => 0
000101 => 0
000110 => 0
000111 => 0
001000 => 0
001001 => 0
001010 => 0
001011 => 0
001100 => 0
001101 => 0
001110 => 1
001111 => 1
010000 => 0
010001 => 0
010010 => 0
010011 => 0
010100 => 0
010101 => 0
010110 => 1
010111 => 1
011000 => 2
011001 => 2
011010 => 1
011011 => 1
011100 => 1
011101 => 1
011110 => 1
011111 => 1
100000 => 1
100001 => 1
100010 => 1
100011 => 1
100100 => 1
100101 => 1
100110 => 2
>>> Load all 1022 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 times the path corresponding to a binary word crosses the base line.
Interpret each $0$ as a step $(1,-1)$ and $1$ as a step $(1,1)$. Then this statistic counts the number of times the path crosses the $x$-axis.
Interpret each $0$ as a step $(1,-1)$ and $1$ as a step $(1,1)$. Then this statistic counts the number of times the path crosses the $x$-axis.
References
[1] Elizalde, S. Counting lattice paths by crossings and major index I: the corner-flipping bijections arXiv:2106.09878
Code
def statistic(w):
c = 0
h = 0
for i in range(len(w)-1):
if ((h == 1 and w[i] == w[i+1] == 0) or
(h == -1 and w[i] == w[i+1] == 1)):
c += 1
if w[i] == 0:
h -= 1
else:
h += 1
return c
Created
Jun 21, 2021 at 14:55 by Martin Rubey
Updated
Jun 21, 2021 at 14:55 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!