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

A362635 Number of partitions of [n] whose blocks are ordered with increasing least elements and where block i has size at least i.

Original entry on oeis.org

1, 1, 1, 2, 5, 12, 31, 97, 351, 1318, 4963, 19391, 82531, 386704, 1926907, 9811733, 50252175, 261462430, 1415025895, 8118274255, 49355434511, 312266428040, 2012834117143, 13055850467371, 85215848844559, 565353777291346, 3866868949795579, 27548261709035105
Offset: 0

Views

Author

Alois P. Heinz, Apr 28 2023

Keywords

Examples

			a(0) = 1: (), the empty partition.
a(1) = 1: 1.
a(2) = 1: 12.
a(3) = 2: 123, 1|23.
a(4) = 5: 1234, 12|34, 13|24, 14|23, 1|234.
a(5) = 12: 12345, 123|45, 124|35, 125|34, 12|345, 134|25, 135|24, 13|245, 145|23, 14|235, 15|234, 1|2345.
a(6) = 31: 123456, 1234|56, 1235|46, 1236|45, 123|456, 1245|36, 1246|35, 124|356, 1256|34, 125|346, 126|345, 12|3456, 1345|26, 1346|25, 134|256, 1356|24, 135|246, 136|245, 13|2456, 1456|23, 145|236, 146|235, 14|2356, 156|234, 15|2346, 16|2345, 1|23456, 1|23|456, 1|24|356, 1|25|346, 1|26|345.
		

Crossrefs

Programs

  • Maple
    b:= proc(n, t) option remember; `if`(n=0, 1, add(
          b(n-j, t+1)*binomial(n-1, j-1), j=t..n))
        end:
    a:= n-> b(n, 1):
    seq(a(n), n=0..30);

A362637 Number of partitions of [n] whose blocks are ordered with increasing least elements and where block i (except possibly the last) has size at least i.

Original entry on oeis.org

1, 1, 2, 4, 10, 30, 96, 323, 1184, 4784, 20708, 93073, 431004, 2080610, 10615276, 57291063, 322921896, 1871715144, 11065738360, 66843918825, 415837464280, 2684434034706, 18010208402784, 124877499979859, 886741484322660, 6399683149311272, 46802092819866340
Offset: 0

Views

Author

Alois P. Heinz, Apr 28 2023

Keywords

Examples

			a(0) = 1: (), the empty partition.
a(1) = 1: 1.
a(2) = 2: 12, 1|2.
a(3) = 4: 123, 12|3, 13|2, 1|23.
a(4) = 10: 1234, 123|4, 124|3, 12|34, 134|2, 13|24, 14|23, 1|234, 1|23|4, 1|24|3.
a(5) = 30: 12345, 1234|5, 1235|4, 123|45, 1245|3, 124|35, 125|34, 12|345, 12|34|5, 12|35|4, 1345|2, 134|25, 135|24, 13|245, 13|24|5, 13|25|4, 145|23, 14|235, 14|23|5, 15|234, 1|2345, 1|234|5, 15|23|4, 1|235|4, 1|23|45, 14|25|3, 15|24|3, 1|245|3, 1|24|35, 1|25|34.
		

Crossrefs

Programs

  • Maple
    b:= proc(n, t) option remember; `if`(n=0, 1, `if`(n<=t, 1,
          add(b(n-j, t+1)*binomial(n-1, j-1), j=t..n)))
        end:
    a:= n-> b(n, 1):
    seq(a(n), n=0..30);

A362893 Number of partitions of [n] whose blocks can be ordered such that the i-th block has at least i elements and no block j > i has an element smaller than the i-th smallest element of block i.

Original entry on oeis.org

1, 1, 1, 2, 5, 12, 28, 69, 193, 614, 2103, 7359, 25660, 88914, 309502, 1102146, 4092840, 16046224, 66410789, 286905421, 1273646720, 5729762139, 25881820352, 116872997038, 527375160184, 2384407416357, 10856086444051, 50097994816979, 235937202788389
Offset: 0

Views

Author

Alois P. Heinz, May 08 2023

Keywords

Examples

			a(0) = 1: (), the empty partition.
a(1) = 1: 1.
a(2) = 1: 12.
a(3) = 2: 123, 1|23.
a(4) = 5: 1234, 12|34, 13|24, 14|23, 1|234.
a(5) = 12: 12345, 123|45, 124|35, 125|34, 12|345, 134|25, 135|24, 13|245, 145|23, 14|235, 15|234, 1|2345.
a(6) = 28: 123456, 1234|56, 1235|46, 1236|45, 123|456, 1245|36, 1246|35, 124|356, 1256|34, 125|346, 126|345, 12|3456, 1345|26, 1346|25, 134|256, 1356|24, 135|246, 136|245, 13|2456, 1456|23, 145|236, 146|235, 14|2356, 156|234, 15|2346, 16|2345, 1|23456, 1|23|456.
a(7) = 69: 1234567, 12345|67, 12346|57, 12347|56, 1234|567, 12356|47, 12357|46, 1235|467, 12367|45, 1236|457, 1237|456, 123|4567, 12456|37, 12457|36, 1245|367, 12467|35, 1246|357, 1247|356, 124|3567, 12567|34, 1256|347, 1257|346, 125|3467, 1267|345, 126|3457, 127|3456, 12|34567, 12|34|567, 13456|27, 13457|26, 1345|267, 13467|25, 1346|257, 1347|256, 134|2567, 13567|24, 1356|247, 1357|246, 135|2467, 1367|245, 136|2457, 137|2456, 13|24567, 13|24|567, 14567|23, 1456|237, 1457|236, 145|2367, 1467|235, 146|2357, 147|2356, 14|23567, 14|23|567, 1567|234, 156|2347, 157|2346, 15|23467, 167|2345, 16|23457, 17|23456, 1|234567, 1|234|567, 15|23|467, 1|235|467, 16|23|457, 1|236|457, 17|23|456, 1|237|456, 1|23|4567.
		

Crossrefs

Programs

  • Maple
    b:= proc(n, t) option remember; `if`(n=0 or n=t, 1,
          add(b(n-j, t+1)*binomial(n-t, j-t), j=t..n))
        end:
    a:= n-> b(n, 1):
    seq(a(n), n=0..28);
Showing 1-3 of 3 results.