OFFSET
1,1
COMMENTS
Unlike the Kolakoski sequence A000002 which is also based on run-lengths and has an unpredictable, complex dynamic behavior, this sequence appears to be completely described by an easily evaluated formula.
Removing the initial 2 it remains the fixed point of the morphism: 3-->123, 2-->12, 1->1. Thus the given formulas are exact. Moreover the sequence of length of runs of 1s is given by A004736. - Benoit Cloitre, Feb 18 2009
FORMULA
Conjecture: Let P(k)=1 + k/3 + k^2/2 + k^3/6. Then a(n)=3 if n=P(k) for some k, a(n)=2 if P(k-1)<n<P(k) for some k and P(k)-n=m(m+1)/2 for some m, else a(n)=1.
EXAMPLE
a(1)=2 requires a(2)=3 to complete the first run of length 2; a(2)=3 then requires a(3)=1, a(4)=2 and a(5)=3 to complete the second run of length 3; etc. (From Labos E.)
PROG
(PARI) v=[2, 3]; for(n=2, 200, for(i=1, v[n], v=concat(v, i)); v); a(n)=v[n]; \\ Benoit Cloitre, Feb 18 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
John W. Layman, Aug 29 2002
STATUS
approved