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.

A136545 Semi-chaotic binary digit sum/product sequence modeled on a Rudin-Shapiro-type sequence like A014081.

Original entry on oeis.org

0, 1, 2, 2, 3, 3, 3, 5, 3, 6, 4, 7, 4, 7, 4, 11, 3, 12, 4, 13, 5, 14, 5, 15, 4, 17, 5, 17, 5, 17, 5, 22, 3, 23, 4, 24, 5, 25, 5, 27, 5, 29, 6, 29, 6, 29, 6, 32, 4, 33
Offset: 1

Views

Author

Roger L. Bagula, Mar 24 2008

Keywords

Crossrefs

Cf. A014081.

Programs

  • Mathematica
    Clear[s, k, n] k[n_] := Apply[Plus, Table[1 - Mod[n - Floor[n/2^m], 2]Mod[n - Floor[n/2^(m - 1)], 2], {m, 1, Floor[(n)*Log[2]]}]]; a = Table[k[n], {n, 1, 50}]

Formula

a(n)=Sum[1 - Mod[n - Floor[n/2^m], 2]Mod[n - Floor[n/2^(m - 1)], 2],{m, 1, Floor[(n)*Log[2]]}]