OFFSET
0,1
COMMENTS
A092539(n) gives the value of prefix of length n+1, seen as a binary number. - Reinhard Zumkeller, Jun 08 2013
Also middle column of rule 86 1-D cellular automaton, from a lone 1 cell, as rule 86 is the mirror image of rule 30. - Antti Karttunen, Oct 03 2019
LINKS
Antti Karttunen, Table of n, a(n) for n = 0..100000 (terms 0..10000 from Reinhard Zumkeller)
Pedro Hecht, PQC: R-Propping a Chaotic Cellular Automata, Univ. of Buenos Aires (Argentina, 2021).
Erica Jen, Global properties of cellular automata, Journal of Statistical Physics 43 (1986), pp 219-242.
Eric Weisstein's World of Mathematics, Elementary Cellular Automaton.
Eric Weisstein's World of Mathematics, Rule 30
Eric Weisstein's World of Mathematics, Random Number
Xiangdong Wen, A Billion Bits of the Center Column of the Rule 30 Cellular Automaton, 2019
Stephen Wolfram, Announcing the Rule 30 Prizes, 2019
Stephen Wolfram, A Million Bits of the Center Column of the Rule 30 Cellular Automaton, 2017
Wolfram Mathematica, Cellular automata: Mathematica notebooks
FORMULA
a(n) = A070950(n,n). - Reinhard Zumkeller, Jun 06 2013
a(n) = 1 - A226474(n). - Reinhard Zumkeller, Jun 08 2013
From Antti Karttunen, Oct 04 2019: (Start)
(End)
MATHEMATICA
CellularAutomaton[30, {{1}, 0}, 101, {All, {0}}]//Flatten
PROG
(Haskell)
a051023 n = a070950 n n -- Reinhard Zumkeller, Jun 06 2013
(PARI)
\\ Or for fast creation of b-files:
A051023write(up_to) = { my(s=1, n=0); for(n=0, up_to, write("b051023.txt", n, " ", ((s>>n)%2)); s = A269160(s)); }; \\ Antti Karttunen, Oct 03 2019
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
EXTENSIONS
Corrected from 64th term by Daniel B. Cristofani (cristofd(AT)hevanet.com), Jan 07 2004
STATUS
approved