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.

A353117 Base-9 representation of A000422(n).

Original entry on oeis.org

1, 23, 386, 5831, 82456, 1206503, 15355671, 202838110, 2484401020, 31322180131, 3835578242783, 525732558043736, 70648887825106821, 10365384555277543376, 1340704717754261643863, 173544168713353406577421
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(9, 20)

Formula

a(n) = A007095(A000422(n)).