login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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