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!)
A322878 Number of set partitions of [n] such that the maximal absolute difference between the least elements of consecutive blocks equals five. 2

%I #8 May 05 2020 04:28:38

%S 0,1,19,171,1293,9320,66992,488526,3637440,27735903,216992278,

%T 1743777862,14401360577,122242150172,1066284279026,9554869690126,

%U 87923414758506,830459368379431,8047463255217118,79967170844047637,814439368083686232,8497321384591725159

%N Number of set partitions of [n] such that the maximal absolute difference between the least elements of consecutive blocks equals five.

%H Alois P. Heinz, <a href="/A322878/b322878.txt">Table of n, a(n) for n = 5..582</a>

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

%F a(n) = A287255(n) - A287254(n).

%p b:= proc(n, k, m, l) option remember; `if`(n<1, 1,

%p `if`(l-n>k, 0, b(n-1, k, m+1, n))+m*b(n-1, k, m, l))

%p end:

%p A:= (n, k)-> b(n-1, min(k, n-1), 1, n):

%p a:= n-> (k-> A(n, k)-A(n, k-1))(5):

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

%t b[n_, k_, m_, l_] := b[n, k, m, l] = If[n < 1, 1, If[l - n > k, 0, b[n - 1, k, m + 1, n]] + m b[n - 1, k, m, l]];

%t A[n_, k_] := b[n - 1, Min[k, n - 1], 1, n];

%t a[n_] := With[{k = 5}, A[n, k] - A[n, k - 1]];

%t a /@ Range[5, 30] (* _Jean-François Alcover_, May 05 2020, after Maple *)

%Y Column k=5 of A287215.

%Y Cf. A287254, A287255.

%K nonn

%O 5,3

%A _Alois P. Heinz_, Dec 29 2018

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 April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)