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-2 of 2 results.

A120695 Set partitions reversed interpreted as factorial base numbers.

Original entry on oeis.org

0, 1, 3, 5, 9, 15, 11, 17, 23, 33, 57, 39, 63, 87, 35, 59, 83, 41, 65, 89, 47, 71, 95, 119, 153, 273, 177, 297, 417, 159, 279, 399, 183, 303, 423, 207, 327, 447, 567, 155, 275, 395, 179, 299, 419, 203, 323, 443, 563, 161, 281, 401, 185, 305, 425, 209, 329, 449
Offset: 0

Views

Author

Keywords

Examples

			The third set partition is {1,2}, 21 in base factorial is 5, so a(3) = 5.
Triangle begins:
   0;
   1;
   3,  5;
   9, 15, 11, 17, 23;
  33, 57, 39, 63, 87, 35, 59, 83, 41, 65, 89, 47, 71, 95, 119;
		

Crossrefs

Cf. A000110 (row lengths), A120698, A120696 (sorted), A120697, A071155.
Column k=0 gives A007489.

Programs

  • Maple
    b:= proc(n, m, t) option remember; `if`(n=0, [0], [seq(map(
           x-> x+j*t!, b(n-1, max(m, j), t+1))[], j=1..m+1)])
        end:
    T:= n-> b(n, 0, 1)[]:
    seq(T(n), n=0..5);  # Alois P. Heinz, Apr 04 2016

A120696 Numbers whose factorial representation contains no zeros and each digit is at most one larger than the largest following digit.

Original entry on oeis.org

0, 1, 3, 5, 9, 11, 15, 17, 23, 33, 35, 39, 41, 47, 57, 59, 63, 65, 71, 83, 87, 89, 95, 119, 153, 155, 159, 161, 167, 177, 179, 183, 185, 191, 203, 207, 209, 215, 239, 273, 275, 279, 281, 287, 297, 299, 303, 305, 311, 323, 327, 329, 335, 359, 395, 399, 401, 407
Offset: 0

Views

Author

Keywords

Comments

0 is included by considering it to have the empty string as its factorial base representation.

Crossrefs

Cf. A000110 (row lengths), A120698, A120695, A120697, A071156.
Showing 1-2 of 2 results.