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.

A287397 Start with 0 and repeatedly substitute 0->012, 1->210, 2->102.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, May 25 2017

Keywords

Comments

This is the fixed point of the morphism 0->012, 1->210, 2->102 starting with 0. Let u be the (nonperiodic) sequence of positions of 0, and likewise, v for 1 and w for 2; then u(n)/n -> 3, v(n)/n -> 3, w(n)/n -> 3.
See A287385 for a guide to related sequences.

Examples

			First three iterations of the morphism:  012, 012210021, 012210021021210012012021210.
		

Crossrefs

Programs

  • Mathematica
    s = Nest[Flatten[# /. {0->{0, 1, 2}, 1->{2, 1, 0}, 2->{1, 0, 2}}] &, {0}, 9]; (*A287397*)
    Flatten[Position[s, 0]]; (*A287398*)
    Flatten[Position[s, 1]]; (*A287399*)
    Flatten[Position[s, 2]]; (*A287400*)