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.

A353107 Base-9 representation of A007908(n).

Original entry on oeis.org

1, 13, 146, 1621, 17836, 207313, 2281451, 25206070, 277266780, 34771513601, 4330564256733, 535110486286816, 65858371163036861, 8202185121837583406, 1113465620754570813253, 134741562223525280514741, 16425841240157671153405780
Offset: 1

Views

Author

Seiichi Manyama, Apr 23 2022

Keywords

Crossrefs

Programs

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

Formula

a(n) = A007095(A007908(n)).