A379236 Numbers k such that x=(sigma(k) XOR 2*k) divides k in carryless binary arithmetic, when the binary expansions of k and x are interpreted as polynomials in ring GF(2)[X].
10, 12, 18, 20, 24, 40, 56, 88, 104, 116, 136, 184, 196, 224, 312, 368, 428, 464, 520, 528, 650, 672, 760, 884, 992, 1472, 1504, 1888, 1952, 2528, 3424, 3724, 4832, 5312, 6464, 7136, 9112, 11096, 11288, 11744, 13216, 15352, 15376, 15872, 15968, 16256, 17816, 17964, 22616, 24448, 26728, 28544, 29296, 30592, 30656
Offset: 1
Keywords
Examples
196 is a term as sigma(196) = 399, 2*196 XOR 399 = 7 is not zero, and A048720(7, 89) = 399.
Links
Crossrefs
Programs
-
PARI
divides_in_GF2X(a,b) = { my(Pa=Pol(binary(a))*Mod(1, 2), Pb=Pol(binary(b))*Mod(1, 2)); !lift(Pa % Pb); }; is_A379236(n) = { my(s=sigma(n), x=bitxor(2*n, s)); (x && divides_in_GF2X(n, x)); };
Comments