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 A221914 #6 Feb 11 2013 12:33:18 %S A221914 1,1,2,2,1,2,3,2,3,6,6,1,2,3,4,2,3,4,6,8,12,6,8,12,24,24,1,2,3,4,5,2, %T A221914 3,4,5,6,8,10,12,15,20,6,8,10,12,15,20,24,30,40,60,24,30,40,60,120, %U A221914 120,1,2,3,4,5,6,2,3,4,5,6,6,8,10,12,12,15,18,20,24,30,6,8,10,12,12,15,18,20,24,30,24,30,36,40,48,60,60,72,90,120,24,30,36,40,48 %N A221914 Array of products of the list entries of the nonempty combinations of n, ordered in a standard way. %C A221914 The sequence of the row lengths is 2^n-1 = A000225(n), n >= 1. %C A221914 The combination choose(n,0) is the empty list [], appearing first in the list of combinations of n each taken as a list, called choose(n). The empty combination is not considered in this array. The list of lists choose(n) is ordered according to increasing m from choose(n,m), m = 0, ..., n, and for each m from 1, ..., n the lists are ordered lexicographically. E.g., choose(3) = [[], [1], [2], [3], [1, 2], [1, 3], [2, 3], [1, 2, 3]]. The corresponding list of the products of these list entries is then (without the empty list) the row n=3 of the present array [1, 2, 3, 2, 3, 6, 6]. %C A221914 The row sums are (n+1)! - 1 = A033312(n+1). %C A221914 One could add a column k=0 (for the empty combination) and a row n=0 by defining a(n,0) = 1, n >= 0. This enlarged array produces then after summation of the entries deriving from the choose(n,m) list the triangle T(n,m), n >= m >= 0, which coincides with the unsigned Stirling1 triangle if the rows are read backwards: T(n,m) = |S1(n+1,n+1-m)|. See A130534 for |Strirling1(n+1,m+1)|. Proof by showing the recurrence. %F A221914 a(n,k) = product(choose(n,m,j)[l],l=1..m) if the k-th entry of the choose(n) list (without the leading empty set and ordered as explained in a comment above), is choose(n,m,j), the j-th list member of the list choose(n,m), for n >= 1, 1 <= m <= n, 1 <= j <= binomial(n,m). %e A221914 The array a(n,k) begins: %e A221914 n\k 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ... %e A221914 1: 1 %e A221914 2: 1 2 2 %e A221914 3: 1 2 3 2 3 6 6 %e A221914 4: 1 2 3 4 2 3 4 6 8 12 6 8 12 24 24 %e A221914 ... %e A221914 Row n=5: 1, 2, 3, 4, 5, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 6, 8, 10, 12, 15, 20, 24, 30, 40, 60, 24, 30, 40, 60, 120; %e A221914 Row n=6: 1, 2, 3, 4, 5, 6, 2, 3, 4, 5, 6, 6, 8, 10, 12, 12, 15, 18, 20, 24, 30, 6, 8, 10, 12, 12, 15, 18, 20, 24, 30, 24, 30, 36, 40, 48, 60, 60, 72, 90, 120, 24, 30, 36, 40, 48, 60, 60, 72, 90, 120, 120, 144, 180, 240, 360, 120, 144, 180, 240, 360, 720, 720; %e A221914 Row n=3: from the combinations list choose(3) (without the first entry []) [[1], [2], [3], [1, 2], [1, 3], [2, 3], [1, 2, 3]] leading to [1, 2, 3, 2, 3, 6, 6]. %e A221914 a(3,4) = 2 is the product of the entries of the combination list choose(3,1,1) = [1, 2], the first combination from choose(3,1). %e A221914 |Stirling1| connection from like m summation: T(3,0) := 1 = |Stirling1(4,4)|, T(3,1) = 1 + 2 + 3 = 6 = |Stirling1(4,3)|, %e A221914 T(3,2) = 2 + 3 + 6 = 11 = |Stirling1(4,2)|, T(3,3) = 6 = %e A221914 |Stirling1(4,1)|. %K A221914 nonn,tabf %O A221914 1,3 %A A221914 _Wolfdieter Lang_, Feb 06 2013