The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A269163 Numbers which have a finite predecessor in Wolfram's Rule 30 cellular automaton; range of A269160 sorted into ascending order. 6

%I #11 Feb 23 2016 05:05:14

%S 0,7,13,14,25,26,27,28,49,50,51,52,53,54,56,63,97,98,99,100,101,102,

%T 104,105,106,107,108,111,112,119,125,126,193,194,195,196,197,198,200,

%U 201,202,203,204,207,208,209,210,211,212,213,214,215,216,221,222,223,224,231,237,238,249,250,251,252,385,386,387,388

%N Numbers which have a finite predecessor in Wolfram's Rule 30 cellular automaton; range of A269160 sorted into ascending order.

%C Numbers which have a finite predecessor in Wolfram's Rule 30 cellular automaton. The configuration of white and black cells is encoded in the binary representation (A007088) of each number.

%C The indexing starts from zero, because a(0) = 0 is a special case in this sequence. (Zero is the only number which is its own predecessor).

%H Antti Karttunen, <a href="/A269163/b269163.txt">Table of n, a(n) for n = 0..8191</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Rule30.html">Rule 30</a>

%H <a href="/index/Ce#cell">Index entries for sequences related to cellular automata</a>

%H <a href="https://oeis.org/wiki/Index_to_Elementary_Cellular_Automata">Index to Elementary Cellular Automata</a>

%t terms = 100; Clear[f]; f[max_] := f[max] = Sort[Table[BitXor[n, BitOr[2n, 4n]], {n, 0, max}]][[1 ;; terms]]; f[terms]; f[max = 2 terms]; While[ Print[max]; f[max] != f[max/2], max = 2 max]; A269163 = f[max] (* _Jean-François Alcover_, Feb 23 2016 *)

%o (Scheme, with _Antti Karttunen_'s IntSeq-library)

%o (define A269163 (MATCHING-POS 0 0 (lambda (n) (or (zero? n) (not (zero? (A269162 n)))))))

%Y Complement: A269164.

%Y Cf. A007088, A269162.

%K nonn

%O 0,2

%A _Antti Karttunen_, Feb 20 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 13:05 EDT 2024. Contains 372552 sequences. (Running on oeis4.)