This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A227443 #11 Sep 19 2019 16:24:20 %S A227443 6,110,116,194,198,204,237,437,452,507,965,969,986,1011,1736,1748, %T A227443 1808,1824,1896,1971,1989,2021,3696,6230,6243,6533,6875,12974,13736, %U A227443 13764,14567,14790,15720,26625,29516,29715,32102,49251,55686,57489,61329,64440,99780,104247,114738 %N A227443 Numbers k such that k and k+1 have the same binary XOR of divisors. %C A227443 n such that A178910(n+1) = A178910(n). %H A227443 Amiram Eldar, <a href="/A227443/b227443.txt">Table of n, a(n) for n = 1..700</a> %t A227443 b[n_] := BitXor @@ Divisors[n]; b1 = 0; s = {}; Do[b2 = b[n]; If[b1 == b2, AppendTo[s, n-1]]; b1 = b2, {n, 1, 10^4}]; s (* _Amiram Eldar_, Sep 19 2019 *) %Y A227443 Cf. A178910, A002961. %K A227443 nonn,base %O A227443 1,1 %A A227443 _Alex Ratushnyak_, Jul 11 2013