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!)
A189008 Zero-one sequence based on cubes: a(A000578(k))=a(k); a(A007412(k))=1-a(k); a(1)=0. 4

%I #6 Mar 30 2012 18:57:23

%S 0,1,0,1,0,1,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,

%T 1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,0,1,1,0,

%U 1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,0,0,1,1,0,1,1,0,0

%N Zero-one sequence based on cubes: a(A000578(k))=a(k); a(A007412(k))=1-a(k); a(1)=0.

%C Let u=A000578 and v=A007412, so that u(n)=n^3 and v=complement(u) for n>=1. Then a is a self-generating zero-one sequence with initial value a(1)=0 and a(u(k))=a(k); a(v(k))=1-a(k).

%t u[n_] := n^3;

%t a[1] = 0; h = 128;

%t c = (u[#1] &) /@ Range[h]; (*A000578*)

%t d = (Complement[Range[Max[#1]], #1] &)[c]; (*A007412*)

%t Table[a[d[[n]]] = 1 - a[n], {n, 1, h - 1}];

%t Table[a[c[[n]]] = a[n], {n, 1, h}] (*A189008*)

%t Flatten[Position[%, 0]] (*A189009*)

%t Flatten[Position[%%, 1]] (*A189010*)

%Y Cf. A188967, A189009, A189010.

%K nonn

%O 1

%A _Clark Kimberling_, Apr 15 2011

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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)