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.

A265321 Total number of ON (black) cells after n iterations of the "Rule 110" elementary cellular automaton starting with a single ON (black) cell.

Original entry on oeis.org

1, 3, 6, 9, 14, 17, 22, 28, 36, 41, 47, 55, 63, 71, 82, 93, 106, 115, 126, 137, 150, 164, 180, 194, 208, 221, 234, 251, 273, 293, 309, 326, 350, 369, 383, 402, 427, 445, 465, 490, 514, 533, 557, 588, 615, 641, 665, 687, 719, 750, 778, 802, 831, 865, 895, 926
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
    rule = 110; rows = 30; Table[Total[Take[Table[Total[Table[Take[CellularAutomaton[rule,{{1},0},rows-1,{All,All}][[k]],{rows-k+1,rows+k-1}],{k,1,rows}][[k]]],{k,1,rows}],k]],{k,1,rows}]