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!)
A284266 Odd bisection of A277700, binary weight of terms of A283975. 4

%I #10 Mar 28 2017 14:46:25

%S 1,2,1,3,2,3,1,4,3,3,2,3,3,4,1,5,4,3,3,2,1,3,2,3,3,4,3,3,4,5,1,6,5,3,

%T 4,3,3,2,3,3,2,3,1,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,4,3,5,6,1,7,6,3,5,4,

%U 3,3,4,5,3,2,3,5,2,3,3,4,3,3,2,5,3,4,1,5,2,3,3,6,3,3,2,3,3,4,3,5,2,3,3,2,1,3,2,5,3,4,3,5,4,5,3,4,3,3,4,5,3

%N Odd bisection of A277700, binary weight of terms of A283975.

%H Antti Karttunen, <a href="/A284266/b284266.txt">Table of n, a(n) for n = 0..8192</a>

%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>

%F a(n) = A277700((2*n)+1).

%F a(n) = A000120(A283975(n)).

%F Other identities. For all n >= 0:

%F A007306(1+n) = a(n) + 2*A284265(n).

%t A264977[n_]:= If[n<2, n, If[EvenQ[n], 2 A264977[n/2], BitXor[A264977[(n - 1)/2], A264977[(n + 1)/2]]]]; Table[DigitCount[A264977[2n + 1], 2, 1], {n, 0, 150}] (* _Indranil Ghosh_, Mar 28 2017 *)

%o (Scheme)

%o (define (A284266 n) (A277700 (+ n n 1)))

%o (define (A284266 n) (A000120 (A283975 n)))

%o (PARI) a(n) = if(n<2, n, if(n%2, bitxor(a((n - 1)/2), a((n + 1)/2)), 2*a(n/2)));

%o b(n) = if(n<1, 0, b(n\2) + n%2);

%o for(n=0, 150, print1(b(a(2*n + 1)),", ")) \\ _Indranil Ghosh_, Mar 28 2017

%Y Cf. A000120, A007306, A277700, A283484, A283975, A284265.

%K nonn

%O 0,2

%A _Antti Karttunen_, Mar 25 2017

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 July 25 21:00 EDT 2024. Contains 374612 sequences. (Running on oeis4.)