OFFSET
0,2
COMMENTS
At each generation, "looking back", one can see "behind", groups of black cells: total number of black cells (cumulative sum of first n terms of A070952).
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
Eric Weisstein's World of Mathematics, Rule 30.
EXAMPLE
a(1)=1 because one black cell;
a(2)=4 because there are now 3 contiguous black cell connected to the first one, which form one only black surface of 4 cells;
a(3)=7 because appear three black cells: 4+3=7
From Michael De Vlieger, Dec 16 2015: (Start)
First 12 rows, replacing "0" with "." for better visibility of ON cells, followed by the total number of ON cells per row, and the running total up to that row:
1 = 1 -> 1
1 1 1 = 3 -> 4
1 1 . . 1 = 3 -> 7
1 1 . 1 1 1 1 = 6 -> 13
1 1 . . 1 . . . 1 = 4 -> 17
1 1 . 1 1 1 1 . 1 1 1 = 9 -> 26
1 1 . . 1 . . . . 1 . . 1 = 5 -> 31
1 1 . 1 1 1 1 . . 1 1 1 1 1 1 = 12 -> 43
1 1 . . 1 . . . 1 1 1 . . . . . 1 = 7 -> 50
(End)
MATHEMATICA
Accumulate[Total /@ CellularAutomaton[30, {{1}, 0}, 52]] (* Michael De Vlieger, Dec 16 2015 *)
PROG
(Haskell)
a110267 n = a110267_list !! (n-1)
a110267_list = scanl1 (+) a070952_list
-- Reinhard Zumkeller, Jun 08 2013
CROSSREFS
KEYWORD
easy,nonn,changed
AUTHOR
Alexandre Wajnberg, Sep 06 2005
EXTENSIONS
Offset changed by Reinhard Zumkeller, Jun 08 2013
STATUS
approved