OFFSET
1,1
COMMENTS
All the terms are even, and every even positive integer occurs infinitely many times.
From Michel Dekking, Dec 09 2024 and Ad van Loon: (Start)
This sequence has a self-similarity property:
a(U(n)) = a(n) + 2 for all n.
Proof: it is known that the columns C_h of the Wythoff array are compound Wythoff sequences. For example: C_1 = L^2, C_2 = UL.
In general column C_h is equal to LU^{(h-1)/2} if h is odd, and to U^{h/2}L if h is even (see Theorem 10 in Kimberling’s 2008 paper in JIS).
Now if h is odd then the elements of column C_h are a subsequence of L, so no U(m) can occur in such a column.
If h is even then the elements of column C_h form a subsequence of U, and so many U(m) occur. Suppose that a(m) = h. Then U(U(m)) is an element of column UU^{h/2}L = U^{(h+2)/2}L. This implies a(U(m)) = a(m) +2. (End)
LINKS
Ad van Loon, The structure of the expansions, See Section 5.
FORMULA
EXAMPLE
MATHEMATICA
z = 13; r = GoldenRatio; f[1] = {1}; f[2] = {1, 2};
f[n_] := f[n] = Join[f[n - 1], Most[f[n - 2]], {n}]; f[z];
g[n_] := g[n] = f[z][[n]]; Table[g[n], {n, 1, 100}] (* A035612 *)
Table[g[Floor[n*r]], {n, 1, (1/r) Length[f[z]]}] (* A255670 *)
Table[g[Floor[n*r^2]], {n, 1, (1/r^2) Length[f[z]]}] (* A255671 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 03 2015
STATUS
approved