%I #26 Oct 18 2018 15:43:51
%S 1,1,1,1,1,1,1,1,2,1,1,1,2,5,1,1,1,2,5,14,1,1,1,2,5,15,42,1,1,1,2,5,
%T 15,51,132,1,1,1,2,5,15,52,191,429,1,1,1,2,5,15,52,202,773,1430,1,1,1,
%U 2,5,15,52,203,861,3336,4862,1,1,1,2,5,15,52,203,876,3970,15207,16796,1
%N Number A(n,k) of set partitions of [n] such that j is member of block b only if b = 1 or at least one of j-1, ..., j-k is member of a block >= b-1; square array A(n,k), n>=0, k>=0, read by antidiagonals.
%H Alois P. Heinz, <a href="/A287641/b287641.txt">Antidiagonals n = 0..34, flattened</a>
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>
%F A(n,k) = Sum_{j=0..k} A287640(n,j).
%e A(5,0) = 1: 12345.
%e A(5,1) = 42 = 52 - 10 = A000110(5) - 10 counts all set partitions of [5] except: 124|3|5, 135|2|4, 13|25|4, 13|2|45, 13|2|4|5, 14|23|5, 14|2|35, 14|2|3|5, 1|24|3|5, 134|2|5.
%e A(5,2) = 51 = 52 - 1 = A000110(5) - 1 counts all set partitions of [5] except: 134|2|5.
%e Square array A(n,k) begins:
%e 1, 1, 1, 1, 1, 1, 1, 1, ...
%e 1, 1, 1, 1, 1, 1, 1, 1, ...
%e 1, 2, 2, 2, 2, 2, 2, 2, ...
%e 1, 5, 5, 5, 5, 5, 5, 5, ...
%e 1, 14, 15, 15, 15, 15, 15, 15, ...
%e 1, 42, 51, 52, 52, 52, 52, 52, ...
%e 1, 132, 191, 202, 203, 203, 203, 203, ...
%e 1, 429, 773, 861, 876, 877, 877, 877, ...
%p b:= proc(n, l) option remember; `if`(n=0, 1, add(b(n-1,
%p [seq(max(l[i], j), i=2..nops(l)), j]), j=1..l[1]+1))
%p end:
%p A:= (n, k)-> `if`(k=0, 1, b(n, [0$k])):
%p seq(seq(A(n, d-n), n=0..d), d=0..12);
%t b[0, _] = 1; b[n_, l_List] := b[n, l] = Sum[b[n - 1, Append[ Table[ Max[ l[[i]], j], {i, 2, Length[l]}], j]], {j, 1, l[[1]] + 1}];
%t A[n_, k_] := If[k == 0, 1, b[n, Table[0, k]]];
%t Table[A[n, d - n], {d, 0, 12}, {n, 0, d}] // Flatten (* _Jean-François Alcover_, Apr 30 2018, after _Alois P. Heinz_ *)
%Y Columns k=0-10 give: A000012, A000108, A275605, A287666, A287667, A287668, A287669, A287670, A287671, A287672, A287673.
%Y Main diagonal gives A000110.
%Y Cf. A064645, A287214, A287216, A287417, A287640.
%K nonn,tabl
%O 0,9
%A _Alois P. Heinz_, May 28 2017