The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A285424 Sum of the entries in the last blocks of all set partitions of [n]. 4

%I #14 May 22 2018 03:01:21

%S 1,5,19,75,323,1512,7630,41245,237573,1451359,9365361,63604596,

%T 453206838,3378581609,26285755211,212953670251,1792896572319,

%U 15658150745252,141619251656826,1324477898999161,12791059496663293,127395689514237279,1307010496324272157

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

%H Alois P. Heinz, <a href="/A285424/b285424.txt">Table of n, a(n) for n = 1..100</a>

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

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

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

%p proc(n, m, s) option remember; `if`(n=0, s,

%p add(b(n-1, max(m, j), `if`(j<m, s, (h-n+1)+

%p `if`(j=m, s, 0))), j=1..m+1))

%p end: b(h, 0$2)

%p end:

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

%t a[h_] := a[h] = Module[{b}, b[n_, m_, s_] := b[n, m, s] = If[n == 0, s, Sum[b[n-1, Max[m, j], If[j < m, s, h - n + 1 + If[j == m, s, 0]]], {j, 1, m + 1}]]; b[h, 0, 0]];

%t Array[a, 25] (* _Jean-François Alcover_, May 22 2018, translated from Maple *)

%Y Cf. A285362, A285363, A285382.

%Y Column k=1 of A286232.

%K nonn

%O 1,2

%A _Alois P. Heinz_, Apr 18 2017

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 May 18 00:50 EDT 2024. Contains 372608 sequences. (Running on oeis4.)