Short version:
We consider words on the set Z
of relative integers.
In particular, X
is the smallest set such that
-
It contains the one-letter word
0
. -
If
a
andb
are two words ofX
, thenX
also containsa L(b)
andR(a) b
.
L(a)
is obtained by taking the reverse of a
and subtracting one to every letter.
R(b)
is obtained by taking the reverse of b
and adding one to every letter.
Find the number X(n)
of words of length n
.
Conjecture: X(n) = sum(i = 0 .. n, C(2 * n - i, n + i))
.
C(n, k)
is the binomial coefficient.