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!)
A363453 Total number of blocks containing only even elements in all partitions of [n]. 3
0, 0, 1, 2, 12, 35, 206, 780, 4949, 22686, 156972, 837333, 6301550, 38122554, 310279615, 2090641920, 18293310174, 135445359397, 1267153412532, 10202944645270, 101557600812015, 881921432827544, 9299499328238110, 86508104545175503, 962663031508255416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} k * A124422(n,k).
a(n) = A363434(n) - A363452(n).
a(2n) = A363452(2n).
a(2n+1) = A363452(2n+1) - A094577(n).
EXAMPLE
a(3) = 2 = 0 + 0 + 1 + 0 + 1 : 123, 12|3, 13|2, 1|23, 1|2|3.
MAPLE
b:= proc(n, k) local g, u; g:= floor(n/2); u:=ceil(n/2);
add(Stirling2(i, k)*binomial(g, i)*
add(Stirling2(u, j)*j^(g-i), j=0..u), i=k..g)
end:
a:= n-> add(b(n, k)*k, k=0..floor(n/2)):
seq(a(n), n=0..25);
# second Maple program:
b:= proc(n, x, y, m) option remember; `if`(n=0, x,
`if`(x+m>0, b(n-1, y, x, m)*(x+m), 0)+b(n-1, y, x+1, m)+
`if`(y>0, b(n-1, y-1, x, m+1)*y, 0))
end:
a:= n-> b(n, 0$3):
seq(a(n), n=0..25);
MATHEMATICA
b[n_, x_, y_, m_] := b[n, x, y, m] = If[n == 0, x,
If[x+m > 0, b[n-1, y, x, m]*(x+m), 0] + b[n-1, y, x+1, m] +
If[y > 0, b[n-1, y-1, x, m+1]*y, 0]];
a[n_] := b[n, 0, 0, 0];
Table[a[n], {n, 0, 25}] (* Jean-François Alcover, Dec 08 2023, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A062094 A334838 A200543 * A246426 A353503 A176583
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jun 02 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 July 27 23:50 EDT 2024. Contains 374654 sequences. (Running on oeis4.)