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.

A186410 Number of "ON" cells at n-th stage of three-dimensional version of the cellular automaton A183060 using cubes.

Original entry on oeis.org

0, 1, 6, 11, 32, 37, 58, 79, 180, 185, 206, 227, 328, 349, 450, 551, 1052, 1057, 1078, 1099, 1200, 1221, 1322, 1423, 1924, 1945, 2046, 2147, 2648, 2749, 3250, 3751, 6252, 6257, 6278, 6299, 6400, 6421, 6522, 6623
Offset: 0

Views

Author

Omar E. Pol, Feb 21 2011

Keywords

Comments

The sequence gives the total number of cells turned ON after n stages in a cellular automaton based on Z^3 lattice in the same way that A183060 is based on the Z^2 lattice. In general here each cell has six neighbors.
It appears that after 2^k stages the structure resembles a pyramid. For the first differences see A186411.

Crossrefs

Programs

  • Mathematica
    a[n_] := n + (4/5) Sum[5^DigitCount[i, 2, 1], {i, n - 1}]; Array[a, 40, 0] (* Michael De Vlieger, Nov 02 2022 *)

Formula

From Nathaniel Johnston, Mar 14 2011: (Start)
a(n) = n + (4/5)*(Sum_{i=1..n-1} 5^A000120(i)).
a(2^n) = 2^n + (4/5)*(6^n - 1).
(End)

Extensions

More terms from Nathaniel Johnston, Mar 14 2011