login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A043722
Numbers whose number of runs in the base-2 representation is congruent to 1 mod 3.
1
1, 3, 7, 10, 15, 18, 20, 22, 26, 31, 34, 36, 38, 40, 44, 46, 50, 52, 54, 58, 63, 66, 68, 70, 72, 76, 78, 80, 85, 88, 92, 94, 98, 100, 102, 104, 108, 110, 114, 116, 118, 122, 127, 130, 132, 134, 136, 140, 142, 144, 149, 152, 156, 158
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[200], Mod[Length[Split[IntegerDigits[#, 2]]], 3]==1&] (* Harvey P. Dale, Mar 24 2022 *)
PROG
(PARI) isok(k) = (hammingweight(bitxor(k, k>>1)) % 3) == 1; \\ Michel Marcus, Oct 04 2023
CROSSREFS
Cf. A005811.
Sequence in context: A307203 A347638 A224880 * A288175 A214066 A120738
KEYWORD
nonn,base
STATUS
approved