A323328 Lexicographically earliest unbounded aliquot-like sequence based on the Dedekind psi function: a(1) = 318, a(n) = t(a(n-1)) where t(k) = A001615(k) - k.
318, 330, 534, 546, 798, 1122, 1470, 2562, 3390, 4818, 5838, 7602, 9870, 17778, 17790, 24978, 27438, 30882, 30894, 34386, 40782, 52530, 82254, 82266, 82278, 106074, 111654, 111690, 176022, 266346, 266382, 266490, 480006, 480330, 674406, 740826, 833814, 834138
Offset: 1
Keywords
References
- Jean-Marie De Koninck, Those Fascinating Numbers, Amer. Math. Soc., 2009, page 71, entry 318.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Kevin Brown and Charles Vanden Eynden, Pseudo-aliquot Sequences, Solution to Problem 10323, The American Mathematical Monthly, Volume 103, No. 8 (1996), pp. 697-698.
- David E. Penney and Carl Pomerance, Problem 10323, The American Mathematical Monthly, Volume 100, No. 7 (1993), p. 688.
Programs
-
Mathematica
t[1] = 0; t[n_] := (Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]) - 1)*n; NestList[t, 318, 40]
Comments