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.

Previous Showing 11-11 of 11 results.

A363071 Number of partitions of [n] into m blocks that are ordered with increasing least elements and where block j contains n+1-j (m in {0..ceiling(n/2)}, j in {1..m}).

Original entry on oeis.org

1, 1, 1, 2, 3, 6, 13, 31, 80, 222, 659, 2082, 6966, 24574, 91067, 353443, 1432909, 6054025, 26599192, 121295345, 573065538, 2800640187, 14137645933, 73619324824, 394979697320, 2180911872495, 12380240599262, 72181691321844, 431857838950302, 2649144684462775
Offset: 0

Views

Author

Alois P. Heinz, May 16 2023

Keywords

Examples

			a(0) = 1: (), the empty partition.
a(1) = 1: 1.
a(2) = 1: 12.
a(3) = 2: 123, 13|2.
a(4) = 3: 1234, 124|3, 14|23.
a(5) = 6: 12345, 1235|4, 125|34, 135|24, 15|234, 15|24|3.
a(6) = 13: 123456, 12346|5, 1236|45, 1246|35, 126|345, 126|35|4, 1346|25, 136|245, 136|25|4, 146|235, 16|2345, 16|235|4, 16|25|34.
a(7) = 31: 1234567, 123457|6, 12347|56, 12357|46, 1237|456, 1237|46|5, 12457|36, 1247|356, 1247|36|5, 1257|346, 127|3456, 127|346|5, 127|36|45, 13457|26, 1347|256, 1347|26|5, 1357|246, 137|2456, 137|246|5, 137|26|45, 1457|236, 147|2356, 147|236|5, 157|2346, 17|23456, 17|2346|5, 17|236|45, 147|26|35, 17|246|35, 17|26|345, 17|26|35|4.
		

Crossrefs

Programs

  • Maple
    b:= proc(n, m) option remember;
         `if`(m b(n, 0):
    seq(a(n), n=0..31);

Formula

a(n) = Sum_{j=0..ceiling(n/2)} (Stirling2(n-j,j) + Stirling2(n-j,j-1)).
a(n) = A171367(n) + A171367(n-1).
Previous Showing 11-11 of 11 results.