login
Integers i such that 5*i XOR 6*i = 11*i.
1

%I #11 Sep 30 2024 03:21:19

%S 0,45,90,93,173,180,186,346,349,360,365,372,685,692,698,717,720,730,

%T 733,744,1370,1373,1384,1389,1396,1434,1437,1440,1453,1460,1466,1485,

%U 1488,2733,2740,2746,2765,2768,2778,2781,2792,2868,2874,2880,2906,2909,2920,2925

%N Integers i such that 5*i XOR 6*i = 11*i.

%C XOR is A003987.

%H <a href="/index/Con#CongruXOR">Index entries for sequences defined by congruent products under XOR</a>

%t Select[Range[0, 5000], BitXor[5*#, 6*#] == 11*# &] (* _Paolo Xausa_, Sep 30 2024 *)

%o (PARI) is(n)=bitxor(5*n, 6*n)==11*n \\ _Charles R Greathouse IV_, Sep 25 2024

%Y Cf. A003987, A115828 (shows this sequence in binary).

%K nonn

%O 0,2

%A _Antti Karttunen_, Feb 01 2006