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.

A191250 Fixed point of the morphism 0 -> 01, 1 -> 02, 2 -> 001.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, May 28 2011

Keywords

Comments

A few 3-substitution sequences:
A191250: 0 -> 01, 1 -> 02, 2 -> 001
A191254: 0 -> 01, 1 -> 02, 2 -> 01
A191255: 0 -> 01, 1 -> 02, 2 -> 03, 3 -> 01
A191258: 0 -> 01, 1 -> 02, 2 -> 03, 3 -> 001
A191261: 0 -> 01, 1 -> 002, 2 -> 01
A191265: 0 -> 001, 1 -> 002, 2 -> 01
A191269: 0 -> 001, 1 -> 02, 2 -> 01
See also A189576 and A189628.

Crossrefs

Programs

  • Mathematica
    t = Nest[Flatten[# /. {0 -> {0, 1}, 1 -> {0, 2}, 2 -> {0, 0, 1}}] &, {0},8]  (* A191250 *)
    Flatten[Position[t, 0]]  (* A191251 *)
    Flatten[Position[t, 1]]  (* A191252 *)
    Flatten[Position[t, 2]]  (* A191253 *)