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.

Showing 1-4 of 4 results.

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)).

A353104 Base-4 representation of A007908(n).

Original entry on oeis.org

1, 30, 1323, 103102, 3000321, 132021000, 10231122013, 233012011032, 13112330310111, 23133313001300332, 101331301332300201003, 130010202012003303220320, 223313011101131330223313231, 1010202010033102302310203002202
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(4, 20)

Formula

a(n) = A007090(A007908(n)).

A353105 Base-5 representation of A007908(n).

Original entry on oeis.org

1, 22, 443, 14414, 343340, 12422311, 304001232, 11130030203, 223101104124, 200240443211120, 130211343340003021, 112140204001002213422, 100421133100401442024323, 40324014240311242321340224, 31241112311230113034201201130
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(5, 20)

Formula

a(n) = A007091(A007908(n)).

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)).
Showing 1-4 of 4 results.