OFFSET
1,1
COMMENTS
Concatenated sequence is a permutation of the integers >= 2.
The chosen encoding of the table by *rising* antidiagonals is contrary to the OEIS standard which rather expects falling antidiagonals: as a consequence, displaying this sequence as a table (2nd link after the list of terms above) will list the integers with given number of prime divisors in columns rather than rows. - M. F. Hasler, Jun 06 2024
EXAMPLE
The table begins:
n\k| 1 2 3 4 5 6 ...
---+-------------------------------------
1 | 2, 3, 4, 5, 7, 8, ...
2 | 6, 10, 12, 14, 15, ...
3 | 30, 42, 60, 66, ...
4 | 210, 330, 390, ...
5 | 2310, 2730, ...
6 | 30030, ...
...| ...
MATHEMATICA
f[n_, m_] := f[n, m] = Block[{c = m, k = If[m == 1, Product[Prime[i], {i, n}], f[n, m - 1] + 1]}, While[Length@FactorInteger[k] != n, k++ ]; k]; Table[f[d - m + 1, m], {d, 10}, {m, d}] // Flatten (* Ray Chandler, Feb 08 2007 *)
PROG
(PARI) A125666(n, k=0)={if(k, for(m=vecprod(primes(n)), oo, omega(m)!=n || k-- || return(m)), A125666(A004736(n), A002260(n)))} \\ M. F. Hasler, Jun 06 2024
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Leroy Quet, Jan 29 2007
EXTENSIONS
Extended by Ray Chandler, Feb 08 2007
STATUS
approved