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!)
A103956 A nonsense sequence. 0

%I #12 Dec 18 2022 07:06:50

%S 1,1,1,2,1,1,2,1,1,2,1,2,1,2,1,3,1,1,2,1,2,1,2,1,3,1,1,2,1,2,1,2,1,3,

%T 1,2,1,2,1,3,1,2,1,3,1,2,1,3,1,2,1,1,1,2,1,2,1,2,1,3,1,2,1,2,1,3,1,2,

%U 1,3,1,2,1,3,1,2,1,1,2,1,2,1,3,1,2,1,3,1,2,1,3,1,2,1,1,2,1,3,1,2,1,3,1,2,1

%N A nonsense sequence.

%F 1-> {1, 2} 2->{1, 3} 3->1 nested nest of substitution list are taken in a chaotic order.

%t Conway[1] = Conway[2] = 1;

%t Conway[n_Integer?Positive] := Conway[n] = Conway[Conway[n - 1]] + Conway[n - Conway[n - 1]]

%t s[1] = {1, 2}; s[2] = {1, 3}; s[3] = {1};

%t t[a_] := Join[a, Flatten[s /@ a]];

%t p[0] = {1}; p[1] = t[{1}];

%t p[n_] := t[p[n - 1]]

%t aa = Flatten[Table[p[If[n > 0, Conway[n], n]], {n, 0, 7}]]

%Y Cf. A073058, A103684.

%K nonn,uned,less

%O 0,4

%A _Roger L. Bagula_, Mar 30 2005

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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)