Identifier
- St001423: Binary words ⟶ ℤ
Values
0 => 0
1 => 0
00 => 0
01 => 0
10 => 0
11 => 0
000 => 1
001 => 0
010 => 0
011 => 0
100 => 0
101 => 0
110 => 0
111 => 1
0000 => 1
0001 => 1
0010 => 0
0011 => 0
0100 => 0
0101 => 0
0110 => 0
0111 => 1
1000 => 1
1001 => 0
1010 => 0
1011 => 0
1100 => 0
1101 => 0
1110 => 1
1111 => 1
00000 => 1
00001 => 1
00010 => 1
00011 => 1
00100 => 0
00101 => 0
00110 => 0
00111 => 1
01000 => 1
01001 => 0
01010 => 0
01011 => 0
01100 => 0
01101 => 0
01110 => 1
01111 => 1
10000 => 1
10001 => 1
10010 => 0
10011 => 0
10100 => 0
10101 => 0
10110 => 0
10111 => 1
11000 => 1
11001 => 0
11010 => 0
11011 => 0
11100 => 1
11101 => 1
11110 => 1
11111 => 1
000000 => 2
000001 => 1
000010 => 1
000011 => 1
000100 => 1
000101 => 1
000110 => 1
000111 => 2
001000 => 1
001001 => 0
001010 => 0
001011 => 0
001100 => 0
001101 => 0
001110 => 1
001111 => 1
010000 => 1
010001 => 1
010010 => 0
010011 => 0
010100 => 0
010101 => 1
010110 => 0
010111 => 1
011000 => 1
011001 => 0
011010 => 0
011011 => 0
011100 => 1
011101 => 1
011110 => 1
011111 => 1
100000 => 1
100001 => 1
100010 => 1
100011 => 1
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 number of distinct cubes in a binary word.
A factor of a word is a sequence of consecutive letters. This statistic records the number of distinct non-empty words $u$ such that $uuu$ is a factor of the word.
A factor of a word is a sequence of consecutive letters. This statistic records the number of distinct non-empty words $u$ such that $uuu$ is a factor of the word.
References
[1] Number of cubefree words of length n on two letters. OEIS:A028445
Code
def statistic(w):
lst = []
for i in range(len(w)):
for l in range(1, (len(w)-i)//3+1):
if w[i:i+l] == w[i+l:i+2*l] == w[i+2*l:i+3*l]:
lst.append(tuple(w[i:i+l]))
return len(set(lst))
Created
Jun 20, 2019 at 00:32 by Martin Rubey
Updated
Jun 20, 2019 at 08: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!