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

A115827
Integers i such that 5*i XOR 6*i = 11*i.
1
0, 45, 90, 93, 173, 180, 186, 346, 349, 360, 365, 372, 685, 692, 698, 717, 720, 730, 733, 744, 1370, 1373, 1384, 1389, 1396, 1434, 1437, 1440, 1453, 1460, 1466, 1485, 1488, 2733, 2740, 2746, 2765, 2768, 2778, 2781, 2792, 2868, 2874, 2880, 2906, 2909, 2920, 2925
OFFSET
0,2
COMMENTS
XOR is A003987.
MATHEMATICA
Select[Range[0, 5000], BitXor[5*#, 6*#] == 11*# &] (* Paolo Xausa, Sep 30 2024 *)
PROG
(PARI) is(n)=bitxor(5*n, 6*n)==11*n \\ Charles R Greathouse IV, Sep 25 2024
CROSSREFS
Cf. A003987, A115828 (shows this sequence in binary).
Sequence in context: A183625 A184548 A184540 * A070002 A101794 A124017
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 01 2006
STATUS
approved