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.

Showing 1-1 of 1 results.

A233510 Least number k such that the number of iterations of h(m) = (greatest prime divisor of m) - (least prime divisor of m) that map k to 0 is n; see Comments.

Original entry on oeis.org

1, 6, 34, 82, 226, 687, 3027, 12387, 28738, 258627, 1109487, 2218978, 13313877, 26627758, 159766557, 2929053434
Offset: 1

Views

Author

Clark Kimberling, Dec 11 2013

Keywords

Comments

The domain of h is extended to include 1, with h(1) = 1 (as in Mathematica).
a(17) <= 51096502407. - Donovan Johnson, Dec 15 2013

Examples

			h(6) = 3 - 2 = 1, and h(1) = 0, so a(2) = 6.
		

Crossrefs

Cf. A231813.

Programs

  • Mathematica
    z = 1000000; h[n_] := h[n] = FactorInteger[n][[-1, 1]] - FactorInteger[n][[1, 1]]; t[n_] := t[n] = Drop[FixedPointList[h, n], -2]; Table[t[n], {n, 1, z}]; a = Table[Length[t[n]], {n, 1, z}]; f[n_] := First[Flatten[Position[a, n]]]; g = Table[f[n], {n, 1, 10}]

Extensions

a(11)-a(16) from Donovan Johnson, Dec 15 2013
Showing 1-1 of 1 results.