Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #17 Jun 09 2021 02:38:38
%S 1,2,4,6,10,17,32,61,117,218,424,795,1533,2922,5590,10720,20592,39564,
%T 76082,146591,282059,544377,1049753,2026788,3912391,7559884
%N Number of different possible profiles of palindromic length for prefixes of binary sequences of length n.
%C The palindromic length of a sequence is the minimum number of terms needed to write it as a concatenation of palindromes. For example, 011010 has palindromic length 3, as it can be written as (0110)(1)(0) or (0)(11)(010), but there is no way to write it as the concatenation of two palindromes.
%C The profile is the list of palindromic lengths of all prefixes. For 011010 it is (1,2,2,1,2,3). This sequence counts the distinct profiles.
%H Anna E. Frid, <a href="https://arxiv.org/abs/1906.09392">Prefix palindromic length of the Thue-Morse word</a>, arXiv:1906.09392 [cs.DM], 2019.
%o (Python)
%o from functools import lru_cache
%o from itertools import product
%o def ispal(w): return w == w[::-1]
%o @lru_cache(maxsize=None)
%o def pal_len(w):
%o if len(w) <= 1: return len(w)
%o return min(1+pal_len(w[i:]) for i in range(len(w), 0, -1) if ispal(w[:i]))
%o def plp(w): # palindrome length profile
%o return tuple(pal_len(w[:i]) for i in range(1, len(w) + 1))
%o def a(n): # only search strings starting with 0 by symmetry
%o return len(set(plp("0"+"".join(u)) for u in product("01", repeat=n-1)))
%o print([a(n) for n in range(1, 18)]) # _Michael S. Branicky_, Jan 04 2021
%Y Cf. A340314.
%K nonn,more
%O 1,2
%A _Jeffrey Shallit_, Jan 04 2021
%E a(21)-a(26) from _Michael S. Branicky_, Jan 04 2021