cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A365901 Irregular triangle read by rows giving trajectory beginning with A002182(n) under recursion of x -> f(x) until reaching 1, where f(x) = x/rad(x), rad(x) = A007947(x).

Original entry on oeis.org

1, 2, 1, 4, 2, 1, 6, 1, 12, 2, 1, 24, 4, 2, 1, 36, 6, 1, 48, 8, 4, 2, 1, 60, 2, 1, 120, 4, 2, 1, 180, 6, 1, 240, 8, 4, 2, 1, 360, 12, 2, 1, 720, 24, 4, 2, 1, 840, 4, 2, 1, 1260, 6, 1, 1680, 8, 4, 2, 1, 2520, 12, 2, 1, 5040, 24, 4, 2, 1, 7560, 36, 6, 1
Offset: 1

Views

Author

Michael De Vlieger, Oct 11 2023

Keywords

Comments

Let h(n) = A002182(n).
Since highly composite numbers h(n) are products of primorials (i.e., in A025487), the squarefree kernel is always a primorial (i.e., in A002110), and the trajectory always reaches 1.

Examples

			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
   ...
		

Crossrefs

Programs

  • Mathematica
    a2182 = Import["https://oeis.org/A002182/b002182.txt", "Data"][[All, -1]]; Array[NestWhileList[#/(Times @@ FactorInteger[#][[All, 1]]) &, a2182[[#]], # > 1 &] &, 20] // TableForm

Formula

Length of row n is A112779(n)+1.
T(n,2) = A301413(n), n > 1.