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.

A265172 Binary representation of the n-th iteration of the "Rule 90" elementary cellular automaton starting with a single ON (black) cell.

Original entry on oeis.org

1, 101, 10001, 1010101, 100000001, 10100000101, 1000100010001, 101010101010101, 10000000000000001, 1010000000000000101, 100010000000000010001, 10101010000000001010101, 1000000010000000100000001, 101000001010000010100000101, 10001000100010001000100010001
Offset: 0

Views

Author

Robert Price, Dec 05 2015

Keywords

Comments

Rules 26, 82, 90, 146, 154, 210 and 218 also generate this sequence.

References

  • S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 55.

Crossrefs

Cf. A070886.

Programs

  • Mathematica
    rule = 90; rows = 20; Table[FromDigits[Table[Take[CellularAutomaton[rule,{{1},0}, rows-1, {All,All}][[k]], {rows-k+1, rows+k-1}], {k,1,rows}][[k]]], {k,1,rows}]