cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A095190 Doubled Thue-Morse sequence: a(2n) = A010060(n), a(2n+1) = A010060(n).

Original entry on oeis.org

0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1
Offset: 0

Views

Author

Miklos Kristof and Peter Boros, Jun 21 2004

Keywords

Comments

The A010060 sequence replacing 0 with 0,0 and 1 with 1,1.
Let n = Sum(c(k)*2^k), c(k) = 0,1, be the binary form of n, n = Sum(d(k)*3^k), d(k) = 0,1,2, the ternary form, n = Sum(e(k)*5^k), e(k) = 0,1,2,3,4, the base 5 form. Then a(n) = Sum(c(k)+d(k)) mod 2 = Sum(c(k)+e(k)) mod 2.

Examples

			The Thue-Morse sequence is: 0 1 1 0 1 0 0 1 1 0 0 1 0 1 1 0 ... so a(n) = 0 0 1 1 1 1 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 1 1 0 0 1 1 1 1 0 0 ...
		

Crossrefs

Programs

  • Mathematica
    a[n_] := Mod[DigitCount[Floor[n/2], 2, 1], 2]; Array[a, 100, 0] (* Amiram Eldar, Jul 28 2023 *)
  • PARI
    a(n)=hammingweight(n\2)%2 \\ Charles R Greathouse IV, May 08 2016

Formula

a(n) = A096273(n) mod 2. - Benoit Cloitre, Jun 29 2004
a(n) = mod(A000120(floor(n/2)), 2) = mod(A010060(floor(n/2)), 2). - Paul Barry, Jan 07 2005
a(n) = mod(-1 + Sum_{k=0..n} mod(C(n, 2k), 2), 3). - Paul Barry, Jan 14 2005
a(n) = mod(log_2(Sum_{k=0..n} mod(C(n, 2k),2)),2). - Paul Barry, Jun 12 2006