OFFSET
0,2
COMMENTS
Also Heinz numbers of subsets of {1..n} that contain n if n>0, where the Heinz number of an integer partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k).
A019565 in its triangle form, with each row's terms in increasing order. - Peter Munn, Feb 26 2021
From David James Sycamore, Jan 09 2025: (Start)
Alternative definition, with offset = 1: a(1) = 1. For n>1 if a(n-1) = A002110(k), a(n) = prime(k+1). Otherwise a(n) is the smallest novel squarefree number whose prime factors have already occurred as previous terms.
LINKS
Alois P. Heinz, Rows n = 0..14, flattened
Michael De Vlieger, Plot p | a(n) at (x,y) = (n,pi(p)), n = 0..2047, 12X vertical exaggeration.
Michael De Vlieger, Fan style binary tree showing a(n), n = 0..2047, with a color function related to the order of a(n) in A019565.
Michael De Vlieger, Fan style binary tree showing a(n), n = 0..2047, with a color function showing 1 in gray, primes in red, primorials in bright green, even squarefree semiprimes in yellow, odd squarefree semiprimes in light green, thereafter, progressively deeper green related to omega(a(n)) = m until m >= 6.
FORMULA
For n > 1, T(n,k) = prime(n) * A261144(n-1,k).
EXAMPLE
Triangle begins:
1
2
3 6
5 10 15 30
7 14 21 35 42 70 105 210
MAPLE
T:= proc(n) option remember; `if`(n=0, 1, (p-> map(
x-> x*p, {seq(T(i), i=0..n-1)})[])(ithprime(n)))
end:
seq(T(n), n=0..6); # Alois P. Heinz, Jan 08 2025
MATHEMATICA
Table[Prime[n]*Sort[Times@@Prime/@#&/@Subsets[Range[n-1]]], {n, 5}]
CROSSREFS
A011782 gives row lengths.
A339360 gives row sums.
A008578 (shifted) 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.
Cf. A379746.
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, Dec 02 2020
EXTENSIONS
Row n=0 (term 1) prepended by Alois P. Heinz, Jan 08 2025
STATUS
approved
