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.

A379341 Population of elementary triangular automaton rule 50 at generation n, starting from a lone 1 cell at generation 0.

Original entry on oeis.org

1, 4, 9, 12, 18, 24, 36, 48, 54, 60, 84, 90, 108, 126, 162, 180, 186, 192, 216, 222, 252, 270, 330, 360, 390, 396, 480, 486, 552, 582, 690, 696, 702, 708, 732, 738, 768, 786, 846, 876, 918, 924, 1044, 1050, 1140, 1194, 1350, 1404, 1434, 1440, 1524, 1530, 1632
Offset: 0

Views

Author

Paul Cousin, May 23 2025

Keywords

Comments

An Elementary Triangular Automaton (ETA) is a cellular automaton in the triangular grid where cells hold binary states and rules are local to the first neighborhood. There are 256 possible ETA rules.
Rule 50 (110010 in binary):
-----------------------------------------------
|state of the cell |1|1|1|1|0|0|0|0|
|sum of the neighbors' states |3|2|1|0|3|2|1|0|
|cell's next state |0|0|1|1|0|0|1|0|
-----------------------------------------------