OFFSET
1,2
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11397 (rows n = 1..1200, flattened)
Michael De Vlieger, Log log scatterplot of log_10(a(n)), n = 1..1053678, showing 2^16 rows.
EXAMPLE
Row 1 = {1} since h(1) = 1, already 1.
Row 2 = {2, 1} since h(2) = 2, 2/rad(2) = 2/2 = 1, reaching 1.
Row 3 = {4, 2, 1} since h(3) = 4, 4/rad(4) = 4/2 = 2, and we follow the trajectory of 2 thereafter.
Row 6 = {24, 4, 2, 1} since h(6) = 24, 24/rad(24) = 24/6 = 4, and we follow the trajectory of 4 thereafter.
Row 14 = {720, 24, 4, 2, 1} since h(14) = 720, 720/rad(720) = 720/30 = 24, which appends row 6 thereafter.
.
First rows of this sequence:
row 1: 1
2: 2, 1
3: 4, 2, 1
4: 6, 1
5: 12, 2, 1
6: 24, 4, 2, 1
7: 36, 6, 1
8: 48, 8, 4, 2, 1
9: 60, 2, 1
10: 120, 4, 2, 1
11: 180, 6, 1
12: 240, 8, 4, 2, 1
...
MATHEMATICA
a2182 = Import["https://oeis.org/A002182/b002182.txt", "Data"][[All, -1]]; Array[NestWhileList[#/(Times @@ FactorInteger[#][[All, 1]]) &, a2182[[#]], # > 1 &] &, 20] // TableForm
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Michael De Vlieger, Oct 11 2023
STATUS
approved