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!)
A243589 Numbers returned when each binary digit of n is replaced by the sum modulo 2 of the digits to its (wrapped) left and (wrapped) right. 1

%I #14 Dec 07 2019 12:18:27

%S 0,0,0,3,5,6,0,5,15,0,10,15,5,10,0,9,27,12,30,3,17,6,20,29,15,24,10,

%T 23,5,18,0,17,51,20,54,27,57,30,60,5,39,0,34,15,45,10,40,57,27,60,30,

%U 51,17,54,20,45,15,40,10,39,5,34,0,33,99,36,102,43,105,46

%N Numbers returned when each binary digit of n is replaced by the sum modulo 2 of the digits to its (wrapped) left and (wrapped) right.

%C a(n) = ror(n) XOR rol(n), where ror(x)=A038572(x) is x rotated one binary place to the right, rol(x)=A006257(x) is x rotated one binary place to the left, and XOR is the binary exclusive-or operator. - _Alex Ratushnyak_, May 24 2016

%C Numbers returned by the following function: take the t binary digits of n, d(1)..d(t), and replace each with the sum d(i) = (d(i-1) + d(i+1)) mod 2, where (i-1 = 0) maps to t and (i+1 > t) maps to 1.

%H Anthony Sand, <a href="/A243589/b243589.txt">Table of n, a(n) for n = 1..1000</a>

%F for digits d(1)..d(t), d(i) = (d(i-1) + d(i+1)) mod 2, where (i-1 = 0) -> t, (i+1 > t) -> 1.

%e For 1, the function returns d(1) = (d(1) + d(1)) mod 2 = (1 + 1) mod 2 = 0.

%e For 5, the initial digits are (1,0,1).

%e d(1) = (d(3) + d(2)) mod 2 = (1 + 0) mod 2 = 1; d(2) = (d(1) + d(3)) mod 2 = (1 + 1) mod 2 = 0; d(3) = (d(2) + d(1)) mod 2 = (0 + 1) mod 2 = 1.

%e The function returns (1,0,1) = 101 = 5 in base 10.

%o (Python)

%o for n in range(1, 100):

%o BL = len(bin(n))-2

%o x = (n>>1) + ((n&1) << (BL-1)) # A038572(n)

%o x^= (n*2) - (1<<BL) + 1 # A006257(n) for n>0

%o print str(x)+',',

%Y Cf. A006257, A035327, A038572, A055120.

%K nonn,easy,base,look

%O 1,4

%A _Anthony Sand_, Jun 07 2014

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 10:39 EDT 2024. Contains 371967 sequences. (Running on oeis4.)