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.

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.

Original entry on oeis.org

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

Views

Author

Amiram Eldar, Jan 11 2019

Keywords

Comments

318 is the least number k whose repeated iteration of the mapping k -> A001615(k) - k yields an unbounded sequence. Since t(m^j * n) = m^j * t(n) if m|n, then if in the sequence a_0 = k, a_1 = t(k), a_2 = t(t(k))... there is a term a_{i1} = m^j * a_0 such that m|k and j > 0 then a_{i+i1} = m^j * a_i for all i and thus the sequence is unbounded. Since a(13)=9870, after 19 iterations a(32) = 27 * 9870, 27 = 3^3 and 3|9870 then a(n+19) = 27 * a(n) for n >= 13.

References

  • Jean-Marie De Koninck, Those Fascinating Numbers, Amer. Math. Soc., 2009, page 71, entry 318.

Crossrefs

Programs

  • Mathematica
    t[1] = 0; t[n_] := (Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]) - 1)*n; NestList[t, 318, 40]