|
COMMENT
|
For n>=0, let f_1(n) be the number of 1's in a(n) (sequence begins : 0,0,2,3,4,6,11,17,24,...) and f_2(n) be the number of 2's (sequence begins :1,2,2,3,5,8,11,16,25...). Then there is a simple relation between f_1 and f_2, namely : f_1(n)=1-f_2(n)+f_2(n-1)+f_2(n-2)+...+f_2(1)+f_2(0) . i.e. f_1(7)=17 and 1-f_2(7)+f_2(6)+...+f_2(0)=1-16+11+8+5+3+2+2+1=17 - Benoit Cloitre (benoit7848c(AT)orange.fr), Oct 11 2005
|
|
REFERENCES
|
Bertran Steinsky, A Recursive Formula for the Kolakoski Sequence A000002, Journal of Integer Sequences, Vol. 9 (2006), Article 06.3.7.
|