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”).

A270763
Total sum of the sizes of all blocks with maximal element 9 in all set partitions of {1,2,...,n}.
3
54267, 230884, 1090335, 5624233, 31336468, 187018111, 1187718179, 7984210898, 56562256041, 420709044049, 3275003008250, 26608043757997, 225076163325759, 1977999456151260, 18024710156370739, 170022295940977197, 1657528265315075476, 16676976427179730819
OFFSET
9,1
LINKS
MATHEMATICA
b[n_, m_, t_] := b[n, m, t] = If[n == 0, {1, 0}, Sum[If[t == 1 && j != m + 1, 0, Function[p, p + If[j == -t || t == 1 && j == m + 1, {0, p[[1]]}, 0]][b[n - 1, Max[m, j], If[t == 1 && j == m + 1, -j, If[t < 0, t, If[t > 0, t - 1, 0]]]]]], {j, 1, m + 1}]];
a[n_] := b[n, 0, Max[0, 1 + n - 9]][[2]];
Array[a, 24, 9] (* Jean-François Alcover, May 26 2018, from Maple code for A270701 *)
CROSSREFS
Column k=9 of A270701.
A diagonal of A270702.
Sequence in context: A254256 A254302 A202315 * A251479 A203624 A250857
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 22 2016
STATUS
approved