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.

A353110 Binary representation of A000422(n).

Original entry on oeis.org

1, 10101, 101000001, 1000011100001, 1101010000110001, 10011111101111110001, 11101001100101110110001, 101001110010111111110110001, 111010110111100110100010110001, 1010001110111010100100110010110001
Offset: 1

Views

Author

Seiichi Manyama, Apr 24 2022

Keywords

Crossrefs

Programs

  • Ruby
    def A(k, n)
      (1..n).map{|i| (1..i).to_a.reverse.join.to_i.to_s(k).to_i}
    end
    p A(2, 10)

Formula

a(n) = A007088(A000422(n)).