OFFSET
0,2
COMMENTS
OFF cells outside the triangle of active cells are ignored.
LINKS
Rémy Sigrist, C program for A319606
EXAMPLE
The Rule-30 1D cellular automaton started from a single ON (.) cell generates the following triangle:
1 .
2 . . .
3 . . 0 0 .
4 . . 0 . . . .
5 . . 0 0 . 0 0 0 .
6 . . 0 . . . . 0 . . .
7 . . 0 0 . 0 0 0 0 . 0 0 .
8 . . 0 . . . . 0 0 . . . . . .
9 . . 0 0 . 0 0 0 . . . 0 0 0 0 0 .
10 . . 0 . . . . 0 . . 0 0 . 0 0 0 . . .
11 . . 0 0 . 0 0 0 0 . 0 . . . . 0 . . 0 0 .
12 . . 0 . . . . 0 0 . . 0 . 0 0 0 0 . 0 . . . .
13 . . 0 0 . 0 0 0 . . . 0 0 . . 0 0 . . 0 . 0 0 0 .
0 OFF cell appears for the first time in generation (line) 1, thus a(0) = 1;
1 consecutive OFF cells (0) appear for the first time after line 1 in generation (line) 4, thus a(1) = 4;
2 consecutive OFF cells (00) appear for the first time after (line) 4 in generation (line) 5, thus a(2) = 5. [Corrected by Rémy Sigrist, Jul 06 2020]
MATHEMATICA
CellularAutomaton[30, {{1}, 0}, 20000];
(Reverse[Internal`DeleteTrailingZeros[
Reverse[Internal`DeleteTrailingZeros[#]]]]) & /@ %;
ls = Table[
Max[Differences[Position[Flatten@{1, %[[n]], 1}, 1]]] - 1, {n, 1,
20000}];
res = {1};
Table[Position[ls, n] // Flatten, {n, 100}];
For[n = 1, n < 40, n++,
AppendTo[res, (Select[%[[n]], # > Last[res] &, 1][[1]])]]
res
PROG
(C) See Links section.
CROSSREFS
KEYWORD
nonn
AUTHOR
Philipp O. Tsvetkov, Sep 24 2018
EXTENSIONS
Data corrected and more terms from Rémy Sigrist, Jul 06 2020
STATUS
approved
