A101556 A Thue-Morse convolution.
0, 1, 11, 110, 1101, 11010, 110100, 1101001, 11010011, 110100110, 1101001100, 11010011001, 110100110010, 1101001100101, 11010011001011, 110100110010110, 1101001100101101, 11010011001011010, 110100110010110100
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..995
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.
Comments