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.

A101556 A Thue-Morse convolution.

Original entry on oeis.org

0, 1, 11, 110, 1101, 11010, 110100, 1101001, 11010011, 110100110, 1101001100, 11010011001, 110100110010, 1101001100101, 11010011001011, 110100110010110, 1101001100101101, 11010011001011010, 110100110010110100
Offset: 0

Views

Author

Paul Barry, Dec 06 2004

Keywords

Comments

A019300 in binary.
Convolution of A010060 and 10^n.

Crossrefs

Programs

  • Mathematica
    Table[Sum[ThueMorse[n - k]*10^k, {k, 0, n}], {n, 0, 50}] (* G. C. Greubel, May 23 2018 *)

Formula

a(n) = Sum_{k=0..n} A010060(n-k) * 10^k.