login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A107640
Order of appearance of twos in the tribonacci ( Rauzy type) substitution: triangular.
0
1, 2, 1, 4, 3, 5, 2, 4, 1, 4, 3, 5, 8, 2, 4, 7, 1, 4, 8, 10, 3, 5, 8, 11, 2, 4, 7, 11, 1, 4, 8, 10, 13, 3, 5, 8, 11, 13, 2, 4, 7, 11, 13, 1, 4, 8, 10, 13, 16, 3, 5, 8, 11, 13, 16, 2, 4, 7, 11, 13, 16, 18, 1, 4, 8, 10, 13, 16, 18, 3, 5, 8, 11, 13, 16, 20
OFFSET
0,2
FORMULA
1->{2}, 2->{3}, 3->{1, 2, 3}
MATHEMATICA
s[1] = {2}; s[2] = {3}; s[3] = {1, 2, 3}; t[a_] := Flatten[s /@ a]; p[0] =
{1}; p[1] = t[p[0]]; p[n_] := t[p[n - 1]]; a = Table[Flatten[Table[If[(Length[p[i]]) >= j && (p[i][[j]] == 2), j, {}], {j, 1, i}]], {i, 1, 20}]; MatrixForm[a] //Flatten
CROSSREFS
Cf. A000073.
Sequence in context: A144334 A141210 A244373 * A030065 A362939 A328676
KEYWORD
nonn,uned,tabf
AUTHOR
Roger L. Bagula, Jun 09 2005
STATUS
approved