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!)
A365821 Total number of partitions of [n-s] whose block minima sum to s, summed over all s. 3
1, 0, 1, 1, 1, 2, 3, 6, 11, 23, 46, 97, 205, 448, 1004, 2339, 5661, 14291, 37507, 101962, 285386, 817772, 2386946, 7069893, 21195092, 64225525, 196636559, 608551084, 1905848637, 6049696252, 19501015441, 63960251538, 213822965681, 729536174204, 2541833303563 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(7) = 6: 12|3, 134|2, 13|24, 14|23, 1|234, 123456.
a(8) = 11: 124|3, 12|34, 1345|2, 134|25, 135|24, 13|245, 145|23, 14|235, 15|234, 1|2345, 1234567.
MAPLE
b:= proc(n, i, t, m) option remember; `if`(n=0, t^(m-i+1),
`if`((i+m)*(m+1-i)/2<n or i>n, 0, `if`(t=0, 0,
t*b(n, i+1, t, m))+ b(n-i, i+1, t+1, m)))
end:
a:= n-> add(b(k, 1, 0, n-k), k=0..n):
seq(a(n), n=0..42);
CROSSREFS
Antidiagonal sums of A124327.
Cf. A368102.
Sequence in context: A036590 A247139 A036591 * A036592 A036656 A001190
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Dec 14 2023
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 May 1 05:44 EDT 2024. Contains 372148 sequences. (Running on oeis4.)