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

A158704
Nonnegative integers with an even number of even powers of 2 in their base-2 representation.
16
0, 2, 5, 7, 8, 10, 13, 15, 17, 19, 20, 22, 25, 27, 28, 30, 32, 34, 37, 39, 40, 42, 45, 47, 49, 51, 52, 54, 57, 59, 60, 62, 65, 67, 68, 70, 73, 75, 76, 78, 80, 82, 85, 87, 88, 90, 93, 95, 97, 99, 100
OFFSET
1,2
COMMENTS
The nonnegative integers with an odd number of even powers of 2 in their base-2 representation are given in A158705.
It appears that a result similar to Prouhet's theorem holds for the terms of A158704 and A158705, specifically: Sum_{k=0..2^n-2, k has an even number of even powers of 2} k^j = Sum_{k=0..2^n-2, k has an odd number of even powers of 2} k^j, for 0 <= j <= (n-1)/2. For a recent treatment of this theorem, see the reference.
Conjecture: take any binary vector of length 4n+3 with n >= 0. We can activate any bits. When a bit is activated, neighboring bits change their values 0 -> 1, 1 -> 0. Our goal is to turn the original binary vector into a vector of only ones by activating the bits. If the value of the binary vector belongs to this sequence, this is possible for a maximum of 4n+3 activations. - Mikhail Kurkov, Jun 01 2021
LINKS
Chris Bernhardt, Evil twins alternate with odious twins, Math. Mag. 82 (2009), pp. 57-62.
Eric Weisstein's World of Mathematics, Prouhet-Tarry-Escott Problem
EXAMPLE
The base-2 representation of 5 is 101, i.e., 5 = 2^2 + 2^0, with two even powers of 2. Thus 5 is a term of the sequence.
MATHEMATICA
Select[Range[0, 100], EvenQ[Total[Take[Reverse[IntegerDigits[#, 2]], {1, -1, 2}]]] &] (* Amiram Eldar, Jan 04 2020 after Harvey P. Dale at A158705 *)
PROG
(Magma) [ n : n in [0..150] | IsEven(&+Intseq(n, 4))]; // Vincenzo Librandi, Apr 13 2011
CROSSREFS
Cf. A112539 (characteristic function, up to offset), A158705 (complement).
Sequence in context: A095371 A047481 A372325 * A131854 A005124 A160530
KEYWORD
nonn,base
AUTHOR
John W. Layman, Mar 24 2009
STATUS
approved