OFFSET
1,1
COMMENTS
It appears that this sequence is a fixed-pt of the morphism 3 -> 334, 4 -> 3343, starting with 3. The orbit of 3 under the indicated morphism is 3, 334, 3343343343, 334334334333433433433343343343334, ...
The sequence of the lengths of the words in this orbit appears to be A006190 = {1,3,10,33,109,...}, a solution of the difference equation a(n) = 3*a(n-1) + a(n-2). A root of the auxiliary equation r^2 - 3r -1 = 0 of this difference equation is 3/2 + sqrt(13)/2, the value of r used in the definition of {a(n)}.
See A003849 for the infinite Fibonacci word (start with 0, apply 0->01, 1->0, take limit).
FORMULA
a(n) = [(n+1)*r] - [n*r], where r = 3/2 + sqrt(13)/2 and [...] denotes the floor function.
MATHEMATICA
r = 3/2 + Sqrt[13]/2; Table[Floor[(n + 1)r] - Floor[n * r], {n, 100}] (* Alonso del Arte, Apr 04 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
John W. Layman, Apr 04 2011
STATUS
approved