OFFSET
1,1
COMMENTS
Also Heinz numbers of subsets of {1..n} that contain n, where the Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
A019565 in its triangle form, but omitting its initial row and with each row's terms in increasing order. - Peter Munn, Feb 26 2021
FORMULA
For n > 1, T(n,k) = prime(n) * A261144(n-1,k).
EXAMPLE
Triangle begins:
2
3 6
5 10 15 30
7 14 21 35 42 70 105 210
MATHEMATICA
Table[Prime[n]*Sort[Times@@Prime/@#&/@Subsets[Range[n-1]]], {n, 5}]
CROSSREFS
A000079 (shifted left) gives row lengths.
A339360 gives row sums.
A000040 is column k = 1.
A100484 is column k = 2.
A001748 is column k = 3.
A002110 is column k = 2^(n-1).
A070826 is column k = 2^(n-1) - 1.
A209862 takes prime indices to binary indices in these terms.
A006881 lists squarefree semiprimes.
A072047 counts prime factors of squarefree numbers.
A319246 is the sum of prime indices of the n-th squarefree number.
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, Dec 02 2020
STATUS
approved