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.

A255297 Number of ON cells after n generations of the odd-rule cellular automaton defined by OddRule 035 when started with a single ON cell.

Original entry on oeis.org

1, 4, 4, 14, 4, 16, 14, 46, 4, 16, 16, 56, 14, 56, 46, 146, 4, 16, 16, 56, 16, 64, 56, 184, 14, 56, 56, 196, 46, 184, 146, 454, 4, 16, 16, 56, 16, 64, 56, 184, 16, 64, 64, 224, 56, 224, 184, 584, 14, 56, 56, 196, 56, 224, 196, 644, 46, 184, 184, 644
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A027649.

Programs

  • Mathematica
    a27649[n_] := 2(3^n) - 2^n;
    Table[Times @@ (a27649[Length[#]]&) /@ Select[Split[IntegerDigits[n, 2]], #[[1]] == 1&], {n, 0, 59}] (* Jean-François Alcover, Sep 15 2018 *)

Formula

Run length transform of A027649.