OFFSET
1,2
COMMENTS
Row 1 is {1} by convention, since 1 is the empty product.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..12747 (rows n = 1..1500, flattened.)
FORMULA
EXAMPLE
Table of the first 12 rows:
n row n
-------------------
1: 1;
2: 2;
3: 3:
4: 2, 4;
5: 5;
6: 2, 3, 4;
7: 7;
8: 2, 4, 8;
9: 3, 9;
10: 2, 4, 5, 8;
11: 11;
12: 2, 3, 4, 8, 9;
MATHEMATICA
{{1}}~Join~Table[Union[Join @@ Map[#^Range[Floor@ Log[#, n]] &, FactorInteger[n][[All, 1]] ] ], {n, 2, 30}]
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Michael De Vlieger, Oct 29 2024
STATUS
approved