Identifier
- St001371: Binary words ⟶ ℤ
Values
0 => 1
1 => 0
00 => 2
01 => 2
10 => 0
11 => 0
000 => 3
001 => 3
010 => 3
011 => 2
100 => 0
101 => 0
110 => 0
111 => 0
0000 => 4
0001 => 4
0010 => 4
0011 => 4
0100 => 4
0101 => 4
0110 => 2
0111 => 2
1000 => 0
1001 => 0
1010 => 0
1011 => 0
1100 => 0
1101 => 0
1110 => 0
1111 => 0
00000 => 5
00001 => 5
00010 => 5
00011 => 5
00100 => 5
00101 => 5
00110 => 5
00111 => 4
01000 => 5
01001 => 5
01010 => 5
01011 => 4
01100 => 2
01101 => 2
01110 => 2
01111 => 2
10000 => 0
10001 => 0
10010 => 0
10011 => 0
10100 => 0
10101 => 0
10110 => 0
10111 => 0
11000 => 0
11001 => 0
11010 => 0
11011 => 0
11100 => 0
11101 => 0
11110 => 0
11111 => 0
000000 => 6
000001 => 6
000010 => 6
000011 => 6
000100 => 6
000101 => 6
000110 => 6
000111 => 6
001000 => 6
001001 => 6
001010 => 6
001011 => 6
001100 => 6
001101 => 6
001110 => 4
001111 => 4
010000 => 6
010001 => 6
010010 => 6
010011 => 6
010100 => 6
010101 => 6
010110 => 4
010111 => 4
011000 => 2
011001 => 2
011010 => 2
011011 => 2
011100 => 2
011101 => 2
011110 => 2
011111 => 2
100000 => 0
100001 => 0
100010 => 0
100011 => 0
100100 => 0
100101 => 0
100110 => 0
>>> 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 length of the longest Yamanouchi prefix of a binary word.
This is the largest index $i$ such that in each of the prefixes $w_1$, $w_1w_2$, $w_1w_2\dots w_i$ the number of zeros is greater than or equal to the number of ones.
This is the largest index $i$ such that in each of the prefixes $w_1$, $w_1w_2$, $w_1w_2\dots w_i$ the number of zeros is greater than or equal to the number of ones.
Code
def statistic(w):
h = 0
for i, l in enumerate(w):
if l == 1:
h -= 1
else:
h += 1
if h < 0:
return i
return len(w)
Created
Mar 19, 2019 at 23:08 by Martin Rubey
Updated
Mar 19, 2019 at 23:08 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!