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.

Showing 1-4 of 4 results.

A253087 a(n) = A253086(2^n-1).

Original entry on oeis.org

1, 4, 12, 48, 144, 440, 1816, 6816, 25816, 101856, 397944, 1573464, 6274560, 25071152, 100180872, 400625360
Offset: 0

Views

Author

N. J. A. Sloane, Feb 12 2015

Keywords

Comments

In trying to understand A253086, this subsequence looked like the best place to attack it. But there is unfortunately no obvious formula even here.

Crossrefs

Cf. A253086.

Extensions

a(10)-a(15) from Lars Blomberg, Jun 09 2016

A255150 Partial sums of A253086.

Original entry on oeis.org

1, 5, 10, 22, 26, 42, 62, 110, 127, 151, 187, 267, 279, 327, 387, 531, 571, 627, 735, 935, 991, 1063, 1203, 1403, 1559, 1735, 1967, 2335, 2475, 2707, 3043, 3483, 3799, 4103, 4491, 5035, 5351, 5695, 6059, 6523, 6983, 7407, 7915, 8499, 8947, 9435, 10215, 11023, 11711, 12335, 13127, 14247, 14983, 15767, 16627, 17867, 18743, 19831, 20931
Offset: 0

Views

Author

Omar E. Pol, Feb 15 2015

Keywords

Comments

Also, total number of cubic ON cells after n generations in a three-dimensional cellular automaton in which A253086(n) gives the number of cubic ON cells in the n-th level of the structure starting from the top. An ON cell remains ON forever. The structure looks like an irregular stepped pyramid.

Crossrefs

A246310 Number of ON cells at generation n of 2-D cellular automaton in which a cell is ON iff either 1 or 4 of its eight neighbors were ON at previous generation, starting with a single ON cell.

Original entry on oeis.org

1, 8, 8, 25, 4, 32, 32, 100, 25, 61, 88, 208, 112, 164, 232, 380, 188, 304, 341, 596, 437, 576, 528, 696, 553, 749, 736, 924, 1016, 1060, 1161, 1372, 1200, 1388, 1456, 1720, 1493, 1761, 1660, 2072, 1781, 2084, 1973, 2732, 2252, 2596, 2552, 3121, 2684, 3145, 2972, 3828, 3132, 3588, 3480, 4061, 3772, 4073, 4009, 4929, 4264, 4996, 4845, 5493, 5160, 5804, 5156
Offset: 0

Views

Author

N. J. A. Sloane, Aug 23 2014

Keywords

Comments

This is the Rule 780 outer totalistic 8-neighbor 2-D CA.
The first few generations are easy to understand, but then there are complications (hence the keyword "look", which refers to the illustrations).

Crossrefs

Cf. A253086 (5-celled analog).

Programs

  • Mathematica
    Total@*Total /@ CellularAutomaton[{780, {2, {{2, 2, 2}, {2, 1, 2}, {2, 2, 2}}}, {1, 1}}, {{{1}}, 0}, 66]
    ArrayPlot /@ CellularAutomaton[{780, {2, {{2, 2, 2}, {2, 1, 2}, {2, 2, 2}}}, {1, 1}}, {{{1}}, 0}, 28]

A271059 First differences of number of active (ON, black) cells in n-th stage of growth of two-dimensional cellular automaton defined by "Rule 260", based on the 5-celled von Neumann neighborhood.

Original entry on oeis.org

3, 1, 7, -8, 12, 4, 28, -31, 7, 12, 44, -68, 36, 12, 84, -104, 16, 52, 92, -144, 16, 68, 60, -44, 20, 56, 136, -228, 92, 104, 104, -124, -12, 84, 156, -228, 28, 20, 100, -4, -36, 84, 76, -136, 40, 292, 28, -120, -64, 168, 328, -384, 48, 76, 380, -364, 212
Offset: 0

Views

Author

Robert Price, Mar 29 2016

Keywords

Comments

Initialized with a single black (ON) cell at stage zero.
First Differences of A253086.

References

  • S. Wolfram, A New Kind of Science, Wolfram Media, 2002; p. 170.

Crossrefs

Cf. A253086.

Programs

  • Mathematica
    CAStep[rule_,a_]:=Map[rule[[10-#]]&,ListConvolve[{{0,2,0},{2,1,2},{0,2,0}},a,2],{2}];
    code=260; stages=128;
    rule=IntegerDigits[code,2,10];
    g=2*stages+1; (* Maximum size of grid *)
    a=PadLeft[{{1}},{g,g},0,Floor[{g,g}/2]]; (* Initial ON cell on grid *)
    ca=a;
    ca=Table[ca=CAStep[rule,ca],{n,1,stages+1}];
    PrependTo[ca,a];
    (* Trim full grid to reflect growth by one cell at each stage *)
    k=(Length[ca[[1]]]+1)/2;
    ca=Table[Table[Part[ca[[n]][[j]],Range[k+1-n,k-1+n]],{j,k+1-n,k-1+n}],{n,1,k}];
    on=Map[Function[Apply[Plus,Flatten[#1]]],ca] (* Count ON cells at each stage *)
    Table[on[[i+1]]-on[[i]],{i,1,Length[on]-1}] (* Difference at each stage *)
Showing 1-4 of 4 results.