This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A182930 #18 Jun 22 2019 09:20:45 %S A182930 1,1,0,2,1,1,5,3,2,1,15,10,7,5,4,52,37,27,20,15,11,203,151,114,87,67, %T A182930 52,41,877,674,523,409,322,255,203,162,4140,3263,2589,2066,1657,1335, %U A182930 1080,877,715,21147,17007,13744,11155,9089,7432,6097,5017,4140,3425 %N A182930 Triangle read by rows: Number of set partitions of {1,2,..,n} such that |k| is a block and no block |m| with m < k exists, (1 <= n, 1 <= k <= n). %C A182930 Mirror image of A106436. - _Alois P. Heinz_, Jan 29 2019 %H A182930 Alois P. Heinz, <a href="/A182930/b182930.txt">Rows n = 1..141, flattened</a> %H A182930 Peter Luschny, <a href="https://oeis.org/wiki/User:Peter_Luschny/SetPartitions">Set partitions</a> %F A182930 Recursion: The value of T(n,k) is, if n < 0 or k < 0 or k > n undefined, else if n = 1 then 1 else if k = n then T(n-1,1) - T(n-1,n-1); in all other cases T(n,k) = T(n,k+1) + T(n-1,k). %e A182930 T(4,2) = card({2|134, 2|3|14, 2|4|13}) = 3. %e A182930 [1] 1, %e A182930 [2] 1, 0, %e A182930 [3] 2, 1, 1, %e A182930 [4] 5, 3, 2, 1, %e A182930 [5] 15, 10, 7, 5, 4, %e A182930 [6] 52, 37, 27, 20, 15, 11, %e A182930 [-1-] [-2-] [-3-] [-4-] [-5-] [-6-] %p A182930 T := proc(n, k) option remember; if n = 1 then 1 elif n = k then T(n-1,1) - T(n-1,n-1) else T(n-1,k) + T(n, k+1) fi end: %p A182930 A182930 := (n,k) -> T(n,k); seq(print(seq(A182930(n,k),k=1..n)),n=1..6); %t A182930 T[n_, k_] := T[n, k] = Which[n == 1, 1, n == k, T[n-1, 1] - T[n-1, n-1], True, T[n-1, k] + T[n, k+1]]; %t A182930 Table[T[n, k], {n, 1, 10}, {k, 1, n}] (* _Jean-François Alcover_, Jun 22 2019 *) %Y A182930 Cf. A000110, A000296, A106436. %Y A182930 T(2n+1,n+1) gives A020556. %K A182930 nonn,tabl %O A182930 1,4 %A A182930 _Peter Luschny_, Apr 08 2011