login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A362925 Triangle read by rows: T(n,m), n >= 0, 0 <= m <= n, is number of partitions of the set {1,2,...,n} that have at most one block contained in {1,...,m}. 4
1, 1, 1, 2, 2, 1, 5, 5, 4, 1, 15, 15, 13, 8, 1, 52, 52, 47, 35, 16, 1, 203, 203, 188, 153, 97, 32, 1, 877, 877, 825, 706, 515, 275, 64, 1, 4140, 4140, 3937, 3479, 2744, 1785, 793, 128, 1, 21147, 21147, 20270, 18313, 15177, 11002, 6347, 2315, 256, 1, 115975, 115975, 111835, 102678, 88033, 68303, 45368, 23073, 6817, 512, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
A variant of A113547 and A362924. See those entries for further information.
LINKS
FORMULA
Sum_{k=0..n} (k+1) * T(n,k) = A040027(n+1). - Alois P. Heinz, Dec 02 2023
EXAMPLE
Triangle begins:
1;
1, 1;
2, 2, 1;
5, 5, 4, 1;
15, 15, 13, 8, 1;
52, 52, 47, 35, 16, 1;
203, 203, 188, 153, 97, 32, 1;
877, 877, 825, 706, 515, 275, 64, 1;
4140, 4140, 3937, 3479, 2744, 1785, 793, 128, 1;
21147, 21147, 20270, 18313, 15177, 11002, 6347, 2315, 256, 1;
115975, 115975, 111835, 102678, 88033, 68303, 45368, 23073, 6817, 512, 1;
...
MAPLE
T:= (n, k)-> add(Stirling2(n-k, j)*(j+1)^k, j=0..n-k):
seq(seq(T(n, k), k=0..n), n=0..10); # Alois P. Heinz, Dec 01 2023
MATHEMATICA
A362925[n_, m_]:=Sum[StirlingS2[n-m, k](k+1)^m, {k, 0, n-m}];
Table[A362925[n, m], {n, 0, 15}, {m, 0, n}] (* Paolo Xausa, Dec 04 2023 *)
CROSSREFS
Row sums are A000110(n+1).
Column k=0 gives A000110.
Column k=2 gives A078468(n-2) for n>=2.
T(n+j,n) give (for j=0-2): A000012, A000079, A007689.
T(2n,n) gives A367820.
Sequence in context: A123158 A185414 A346520 * A133611 A010094 A019710
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Aug 10 2023, based on an email from Don Knuth.
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 5 21:20 EDT 2024. Contains 374028 sequences. (Running on oeis4.)