A098009 Numbers k such that the transient part of the aliquot sequence for k is finite and sets a new record.
1, 2, 4, 9, 12, 30, 102, 138
Offset: 1
Examples
138 has a transient of length 177 (see Guy's book).
Programs
-
Mathematica
g[n_] := If[n > 0, DivisorSigma[1, n] - n, 0]; f[n_] := NestWhileList[g, n, UnsameQ, All]; a = -1; Do[b = Length[ f[n]] - 1; If[b > a, a = b; Print[n]], {n, 275}] (* Robert G. Wilson v, Sep 10 2004 *)
Extensions
102 and 138 from Robert G. Wilson v, Sep 10 2004
Comments