Not answered, see my comments.
Given a binary string like this: 1101 What's the number of possible ways to split it (where splitting the string doesn't necessary means having only 2 parts)
For example:
1,101
11,01
1,1,0,1
1,1,01
1,10,1
110,1
1,101
1101
are all valid splits.
Instead of exact number for string of length n I'm interested in knowing whether the result if some polynomial function of n or not.
Hint. Every subset of the set of spaces between digits corresponds to a splitting. How may subsets does an $n-1$ element set have?
If necessary, work out the answer for $n = 1,2,2,3,5$ to see the pattern.