Skip to main content
added 224 characters in body
Source Link
alephalpha
  • 51.9k
  • 7
  • 75
  • 196

PARI/GPPari/GP, 3533 bytes

n->[hammingweight>[sumdigits(x,2)%2|x<-[0..n-1]] 

Try it online!

PARI/GP, 35 bytes

n->[hammingweight(x)%2|x<-[0..n-1]] 

Pari/GP, 33 bytes

n->[sumdigits(x,2)%2|x<-[0..n-1]] 

Try it online!

Source Link
alephalpha
  • 51.9k
  • 7
  • 75
  • 196

PARI/GP, 35 bytes

n->[hammingweight(x)%2|x<-[0..n-1]]