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!)
A182187 a(n) is the least m >= n such that the Hamming distance D(n,m) = 2. 7

%I #59 Jul 09 2021 21:50:36

%S 3,2,4,5,7,6,10,11,11,10,12,13,15,14,22,23,19,18,20,21,23,22,26,27,27,

%T 26,28,29,31,30,46,47,35,34,36,37,39,38,42,43,43,42,44,45,47,46,54,55,

%U 51,50,52,53,55,54,58,59,59,58,60,61,63,62,94,95,67,66,68

%N a(n) is the least m >= n such that the Hamming distance D(n,m) = 2.

%C a(n) = n<+>2 (see comment in A206853).

%H Alois P. Heinz, <a href="/A182187/b182187.txt">Table of n, a(n) for n = 0..1000</a>

%F If n is odd, then a(n) = n+2^(A007814(n+1)-1); if n == 2 (mod 4), then a(n) = n+2^(A007814(n+2)-1); if n == 0 (mod 4), then a(n) = n+3.

%F Using this formula, we can prove the conjecture formulated in comment in A209554 in the case k=2. Moreover, let us show that if N does not have the form 8*t or 8*t+1, then it can be represented in the form n<+>2. Indeed, in the cases N = 8*t+2, 8*t+4, 8*t+6, 8*t+3, 8*t+5 and 8*t+7 it is sufficient to choose n=N-4, n=N-2, n=N-1, n=N-3, n=N-2 and n = N-3 respectively; in the cases 8*t, 8*t+1, for every choice of n <= N, we do not obtain the equality n<+>2 = N.

%F In addition, note that n<+>1 = n + 2^A007814(n+1) = A086799(n+1).

%p HD:= (i, j)-> add(h, h=Bits[Split](Bits[Xor](i, j))):

%p a:= proc(n) local c;

%p for c from n do if HD(n, c)=2 then return c fi od

%p end:

%p seq(a(n), n=0..100); # _Alois P. Heinz_, Apr 17 2012

%t t={}; Do[i=n+1; While[Count[IntegerDigits[BitXor[n,i],2],1]!=2,i++]; AppendTo[t,i],{n,0,66}]; t (* _Jayanta Basu_, May 26 2013 *)

%o (Sage)

%o def A182187(n):

%o S = n.bits(); T = S; c = n; L = len(S)

%o while true:

%o H = sum(a != b for a, b in zip(S, T))

%o if H == 2: return c

%o c += 1; T = c.bits()

%o if len(T) > L: L += 1; S.append(0)

%o [A182187(n) for n in (0..66)] # _Peter Luschny_, May 26 2013

%o (Python)

%o def a(n):

%o m = n + 1

%o while bin(n^m).count('1') != 2: m += 1

%o return m

%o print([a(n) for n in range(67)]) # _Michael S. Branicky_, Mar 02 2021

%o (PARI) a(n) = bitxor(n, 3<<valuation(n>>1+1,2)); \\ _Kevin Ryde_, Jul 09 2021

%Y Cf. A206853 (trajectory of 1), A207063 (trajectory of 0).

%Y Cf. A209544 (primes which are not terms), A209554 (and also not n<+>3).

%Y Cf. A086799 ((n-1)<+>1), A182209 (n<+>3), A182336 (n<+>4).

%Y Cf. A205509, A205510, A205511, A205302, A205649, A205533, A122565, A206852, A206960, A007814.

%K nonn,base,easy

%O 0,1

%A _Vladimir Shevelev_, Apr 17 2012

%E More terms from _Alois P. Heinz_, Apr 17 2012

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.)