login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A270496
Sum of the sizes of the fourth blocks in all set partitions of {1,2,...,n}.
2
1, 12, 97, 675, 4418, 28396, 183615, 1211936, 8237223, 57944187, 422950882, 3206531728, 25247250641, 206313943476, 1747990803645, 15336960025775, 139187730958406, 1304967471569208, 12624893940830455, 125892638744630088, 1292581981392588771
OFFSET
4,2
LINKS
MAPLE
b:= proc(n, m) option remember; `if`(n=0, [1, 0],
add((p->`if`(j<5, [p[1], p[2]+p[1]*x^j], p))(
b(n-1, max(m, j))), j=1..m+1))
end:
a:= n-> coeff(b(n, 0)[2], x, 4):
seq(a(n), n=4..30);
MATHEMATICA
b[n_, m_] := b[n, m] = If[n == 0, {1, 0}, Sum[Function[p, If[j < 5, {p[[1]], p[[2]] + p[[1]]*x^j}, p]][b[n - 1, Max[m, j]]], {j, 1, m + 1}]];
a[n_] := Coefficient[b[n, 0][[2]], x, 4];
Table[a[n], {n, 4, 30}] (* Jean-François Alcover, May 27 2018, translated from Maple *)
CROSSREFS
Column p=4 of A270236.
Sequence in context: A016753 A078605 A021029 * A128594 A166793 A041268
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 18 2016
STATUS
approved