cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A106036 Trajectory of 1 under the morphism 1->{1,2}, 2->{1,2,3}, 3->{1,2,3,3}.

Original entry on oeis.org

1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3, 1, 2, 1, 2, 3, 1, 2, 3, 3
Offset: 0

Views

Author

Roger L. Bagula, May 05 2005

Keywords

Comments

2-sided chain substitution sequence: characteristic polynomial x^3-4x^2+3*x.

References

  • M. Baake and R. V. Moody, "Self-Similar Measures for Quasicrystals", in Directions in Mathematical Quasicrystals (eds. M. Baake and R. V. Moody), CRM Monograph Series, vol. 13, AMS, Providence, RI (2000), pp. 1-42.

Crossrefs

Cf. A106035.

Programs

  • Mathematica
    s[1] = {1, 2}; s[2] = {1, 2, 3}; s[3] = {1, 2, 3, 3}; t[a_] := Flatten[s /@ a]; p[0] = {1}; p[1] = t[p[0]]; p[n_] := t[p[n - 1]] aa = p[6]