A330816 Numbers that reach 1 under the iterations of the map k -> k/d(k) if d(k) | k, and k -> k otherwise, where d(k) is the number of divisors of k (A000005).
1, 2, 8, 12, 80, 96, 240, 2240, 3600, 4032, 20160, 215040, 268800, 387072, 435456, 725760, 6350400, 77414400, 94058496, 97542144, 139345920, 162570240, 278691840, 365783040, 452874240, 457228800, 5486745600, 61931520000
Offset: 1
Examples
12 is a term since 12/d(12) = 12/6 = 2 and 2/d(2) = 2/2 = 1.
Links
- David A. Corneth, Conjectured full sequence
Programs
-
Mathematica
f[n_] := If[Divisible[n, (d = DivisorSigma[0, n])], n/d, n]; Select[Range[10^6], FixedPoint[f, #] == 1 &]
Comments