Identifier
- St001414: Binary words ⟶ ℤ
Values
0 => 0
1 => 0
00 => 0
01 => 0
10 => 0
11 => 0
000 => 1
001 => 0
010 => 1
011 => 0
100 => 0
101 => 1
110 => 0
111 => 1
0000 => 1
0001 => 1
0010 => 0
0011 => 0
0100 => 1
0101 => 1
0110 => 0
0111 => 0
1000 => 0
1001 => 0
1010 => 1
1011 => 1
1100 => 0
1101 => 0
1110 => 1
1111 => 1
00000 => 2
00001 => 1
00010 => 1
00011 => 1
00100 => 2
00101 => 0
00110 => 0
00111 => 0
01000 => 1
01001 => 1
01010 => 2
01011 => 1
01100 => 0
01101 => 0
01110 => 2
01111 => 0
10000 => 0
10001 => 2
10010 => 0
10011 => 0
10100 => 1
10101 => 2
10110 => 1
10111 => 1
11000 => 0
11001 => 0
11010 => 0
11011 => 2
11100 => 1
11101 => 1
11110 => 1
11111 => 2
000000 => 2
000001 => 2
000010 => 1
000011 => 1
000100 => 1
000101 => 1
000110 => 1
000111 => 1
001000 => 2
001001 => 2
001010 => 0
001011 => 0
001100 => 0
001101 => 0
001110 => 0
001111 => 0
010000 => 1
010001 => 1
010010 => 1
010011 => 1
010100 => 2
010101 => 2
010110 => 1
010111 => 1
011000 => 0
011001 => 0
011010 => 0
011011 => 0
011100 => 2
011101 => 2
011110 => 0
011111 => 0
100000 => 0
100001 => 0
100010 => 2
100011 => 2
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
Half the length of the longest odd length palindromic prefix of a binary word.
More precisely, this statistic is the largest number $k$ such that the word has a palindromic prefix of length $2k+1$.
More precisely, this statistic is the largest number $k$ such that the word has a palindromic prefix of length $2k+1$.
References
[1] Gabric, D., Shallit, J. Borders, Palindrome Prefixes, and Square Prefixes arXiv:1906.03689
Code
def statistic(w):
return max((k-1)//2 for k in range(1,len(w)+1,2) if w[:k] == w[:k][::-1])
Created
Jun 11, 2019 at 07:28 by Martin Rubey
Updated
Mar 05, 2020 at 14:09 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!