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.

A353114 Base-6 representation of A000422(n).

Original entry on oeis.org

1, 33, 1253, 32001, 1055253, 22005133, 432020401, 12410423013, 242000505413, 5014143322001, 2210214121042333, 1105325341502010053, 333110135101300035201, 144230053432212010304453, 51542110115212012113433133
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(6, 20)

Formula

a(n) = A007092(A000422(n)).