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.

A127239 Central coefficients of Thue-Morse binomial triangle A127236.

Original entry on oeis.org

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

Views

Author

Paul Barry, Jan 10 2007

Keywords

Crossrefs

Programs

  • Maple
    tm:= proc(n) option remember;
      if n::even then procname(n/2^padic:-ordp(n, 2))
      else 1 - procname((n-1)/2)
      fi
    end proc:
    tm(0):= 0:
    seq(tm(binomial(2*n,n)),n=0..100); # Robert Israel, May 07 2019
  • Mathematica
    Table[ThueMorse[Binomial[2n, n]], {n, 0, 100}] (* Jean-François Alcover, Jun 22 2020 *)

Formula

a(n) = A010060(binomial(2n,n)).