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.

A265322 Number of OFF (white) cells in the n-th iteration of the "Rule 110" elementary cellular automaton starting with a single ON (black) cell.

Original entry on oeis.org

0, 1, 2, 4, 4, 8, 8, 9, 9, 14, 15, 15, 17, 19, 18, 20, 20, 26, 26, 28, 28, 29, 29, 33, 35, 38, 40, 38, 35, 39, 45, 46, 41, 48, 55, 52, 48, 57, 57, 54, 57, 64, 61, 56, 62, 65, 69, 73, 65, 68, 73, 79, 76, 73, 79, 80, 76, 81, 83, 83, 86, 89, 90, 91, 86, 91, 97
Offset: 0

Views

Author

Robert Price, Dec 06 2015

Keywords

References

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

Crossrefs

Cf. A075437.

Programs

  • Mathematica
    A265322list[nmax_]:=Range[1,2nmax+1,2]-Map[Total,CellularAutomaton[110,{{1},0},nmax]];A265322list[100] (* Paolo Xausa, Oct 04 2023 *)