OFFSET
0,2
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..10309 (rows 0 <= n <= 9).
Eric Weisstein's World of Mathematics, Primorial
Eric Weisstein's World of Mathematics, Squarefree
EXAMPLE
The sequence begins with 1 as it is equal to A002110(0) and has 0 prime factors. The first primes less than 6 come next, followed by the first squarefree semiprimes (A006881) less than 30 and the smallest terms of A033992 less than 210, etc.
Triangle begins:
n Row n
0: 1;
1: 2, 3, 5;
2: 6, 10, 14, 15, 21, 22, 26;
3: 30, 42, 66, 70, 78, 102, 105, 110, 114, 130, ..., 195;
...
In each row n, the squarefree terms m must have omega(m) = n.
MATHEMATICA
Table[Select[Range[#, Prime[n + 1] # - 1] &@ Product[Prime@ i, {i, n}], And[SquareFreeQ@ #, PrimeOmega@ # == n] &], {n, 0, 4}] // Flatten
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Michael De Vlieger, May 25 2017
EXTENSIONS
Edited by N. J. A. Sloane, Jun 05 2017
STATUS
approved