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.

A122569 Consider the Thue-Morse sequence (A010059) at each iteration. Read each reversed string as a binary number and convert it to a decimal number.

Original entry on oeis.org

1, 1, 9, 105, 38505, 1771476585, 10838310072981296745, 140350834813144189858090274002849666665, 68033174967769840440887906939858451149105560803546820641877549596291376780905
Offset: 1

Views

Author

Roger L. Bagula, Sep 17 2006

Keywords

Crossrefs

Cf. A010059.

Programs

  • Mathematica
    FromDigits[ #, 2] & /@ NestList[Flatten[ # /. {1 -> {0, 1}, 0 -> {1, 0}}] &, {1}, 8] (* Robert G. Wilson v, Sep 25 2006 *)

Formula

T(n,m)=ThueMorse(n, 1), a(n) = Sum_{m=1..2^(n - 1)} T(n,m)*2^(m - 1).

Extensions

Edited by Robert G. Wilson v, Sep 25 2006