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-2 of 2 results.

A094605 a(n) is the period of the n-th diagonal, from the right, of Rule 30 (begun from an initial black cell).

Original entry on oeis.org

1, 2, 2, 4, 8, 8, 16, 32, 32, 64, 64, 64, 64, 64, 64, 128, 256, 256, 256, 256, 256, 256, 256, 256, 512, 1024, 1024, 2048, 2048, 4096, 4096, 4096, 4096, 4096, 8192, 8192, 16384, 32768, 32768, 65536, 65536, 131072, 131072, 262144, 262144, 262144, 262144
Offset: 1

Views

Author

Eric Rowland, May 13 2004

Keywords

Comments

One 64 term is missing in Wolfram 2002 (p. 871). (There are six.)

References

  • Stephen Wolfram, A New Kind of Science. Wolfram Media, 2002, p. 871.

Crossrefs

A364774 a(n) is the periodic part (converted to base 10) on the n-th diagonal from the right of rule-30 1-D cellular automaton, when started from a single ON cell.

Original entry on oeis.org

1, 2, 2, 12, 180, 168, 42840, 3400480080, 3127563600, 12444951686140307040, 12370448552746640800, 14616061688484808000, 13063440952988449472, 12291672850370833024, 11994012329620187776, 270303456443855225105637298999007589120, 84431359962367713768426673527546762857531371484724067759478650915353749433600
Offset: 1

Views

Author

Paolo Xausa, Aug 06 2023

Keywords

Comments

See A364773 for comments and links.

Crossrefs

Cf. A070950, A094605 (periods), A363343 (diagonals), A364773 (base 2).

Programs

  • Mathematica
    A364774list[steps_]:=Module[{d=2Ceiling[Log2[steps]],ca,n=1,p,plen,a={1}},ca=CellularAutomaton[30,{{1},0},{steps,{1-d,steps}}];While[++n<=2(d-1)&&(plen=Length[p=FindRepeat[Flatten[Rest[Split[Diagonal[ca,d-n]]]]]])>=IntegerLength[Last[a]]&&IntegerQ[Log2[plen]],AppendTo[a,FromDigits[p,2]]];a];
    A364774list[300] (* Analyzes 300 evolution steps *)
Showing 1-2 of 2 results.