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.

A353116 Base-8 representation of A000422(n).

Original entry on oeis.org

1, 25, 501, 10341, 152061, 2375761, 35145661, 516277661, 7267464261, 121672446261, 20125401442261, 3342313131342261, 564731226736442261, 116343242472501442261, 20325073566675147442261, 3327107422474572347442261
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(8, 20)

Formula

a(n) = A007094(A000422(n)).