[go: up one dir, main page]

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!)
A368102 Total number of partitions of [n-s] whose block maxima sum to s, summed over all s. 3
1, 0, 1, 0, 1, 1, 1, 1, 3, 2, 3, 6, 5, 9, 14, 13, 20, 40, 31, 56, 86, 105, 127, 227, 244, 394, 520, 665, 911, 1536, 1565, 2449, 3507, 4719, 5931, 9061, 11151, 16911, 21774, 29798, 39804, 60411, 71865, 104399, 144999, 197907, 253430, 370044, 478764, 694807 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,9
LINKS
EXAMPLE
a(11) = 6: 123|4, 124|3, 13|24, 14|23, 1|2|34, 1|2345.
MAPLE
b:= proc(n, m) option remember; `if`(n=0, 1,
b(n-1, m)*m + expand(x^n*b(n-1, m+1)))
end:
a:= n-> add(coeff(b(n-k, 0), x, k), k=ceil(n/2)..n):
seq(a(n), n=0..80);
# second Maple program:
b:= proc(n, i, t) option remember; `if`(i*(i+1)/2<n, 0,
`if`(n=0, t^i, `if`(t=0, 0, t*b(n, i-1, t))+
(t+1)^max(0, 2*i-n-1)*b(n-i, min(n-i, i-1), t+1)))
end:
a:= n-> add(b(k, n-k, 0), k=ceil(n/2)..n):
seq(a(n), n=0..80);
CROSSREFS
Antidiagonal sums of A367955.
Cf. A365821.
Sequence in context: A371070 A058691 A281667 * A336749 A214297 A022472
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Dec 11 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 August 29 21:13 EDT 2024. Contains 375518 sequences. (Running on oeis4.)