[go: up one dir, main page]

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

Sum of the entries in the first blocks of all set partitions of [n].
4

%I #15 May 20 2018 11:36:14

%S 1,4,15,60,262,1243,6358,34835,203307,1257913,8216945,56463487,

%T 406868167,3065920770,24099977863,197179545722,1675846476148,

%U 14769104672839,134745258569108,1270767279092285,12371426210292311,124173909409948575,1283498833928098171

%N Sum of the entries in the first blocks of all set partitions of [n].

%H Alois P. Heinz, <a href="/A285363/b285363.txt">Table of n, a(n) for n = 1..575</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>

%F a(n) = A285362(n,1).

%e a(3) = 15 because the sum of the entries in the first blocks of all set partitions of [3] (123, 12|3, 13|2, 1|23, 1|2|3) is 6+3+4+1+1 = 15.

%p a:= proc(h) option remember; local b; b:=

%p proc(n, m) option remember;

%p `if`(n=0, [1, 0], add((p-> `if`(j=1, p+ [0,

%p (h-n+1)*p[1]], p))(b(n-1, max(m, j))), j=1..m+1))

%p end: b(h, 0)[2]

%p end:

%p seq(a(n), n=1..30);

%t a[h_] := a[h] = Module[{b}, b[n_, m_] := b[n, m] = If[n == 0, {1, 0}, Sum[If[j == 1, # + {0, (h - n + 1)*#[[1]]}, #]&[b[n - 1, Max[m, j]]], {j, 1, m + 1}]]; b[h, 0][[2]]];

%t Table[a[n], {n, 1, 30}] (* _Jean-François Alcover_, May 20 2018, translated from Maple *)

%Y Column k=1 of A285362.

%Y Cf. A284816, A285424.

%K nonn

%O 1,2

%A _Alois P. Heinz_, Apr 17 2017