Identifier
- St000393: Binary words ⟶ ℤ
Values
0 => 1
1 => 1
00 => 2
01 => 1
10 => 2
11 => 2
000 => 3
001 => 2
010 => 2
011 => 2
100 => 3
101 => 2
110 => 3
111 => 3
0000 => 4
0001 => 3
0010 => 3
0011 => 3
0100 => 3
0101 => 2
0110 => 3
0111 => 3
1000 => 4
1001 => 3
1010 => 3
1011 => 3
1100 => 4
1101 => 3
1110 => 4
1111 => 4
00000 => 5
00001 => 4
00010 => 4
00011 => 4
00100 => 4
00101 => 3
00110 => 4
00111 => 4
01000 => 4
01001 => 3
01010 => 3
01011 => 3
01100 => 4
01101 => 3
01110 => 4
01111 => 4
10000 => 5
10001 => 4
10010 => 4
10011 => 4
10100 => 4
10101 => 3
10110 => 4
10111 => 4
11000 => 5
11001 => 4
11010 => 4
11011 => 4
11100 => 5
11101 => 4
11110 => 5
11111 => 5
000000 => 6
000001 => 5
000010 => 5
000011 => 5
000100 => 5
000101 => 4
000110 => 5
000111 => 5
001000 => 5
001001 => 4
001010 => 4
001011 => 4
001100 => 5
001101 => 4
001110 => 5
001111 => 5
010000 => 5
010001 => 4
010010 => 4
010011 => 4
010100 => 4
010101 => 3
010110 => 4
010111 => 4
011000 => 5
011001 => 4
011010 => 4
011011 => 4
011100 => 5
011101 => 4
011110 => 5
011111 => 5
100000 => 6
100001 => 5
100010 => 5
100011 => 5
100100 => 5
100101 => 4
100110 => 5
>>> Load all 1200 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 strictly increasing runs in a binary word.
Code
def statistic(w):
res = 1
last = w[0]
for e in w[1:]:
if e <= last:
res += 1
last = e
return res
Created
Feb 12, 2016 at 22:05 by Martin Rubey
Updated
Feb 12, 2016 at 22:05 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!