login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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. 1
1, 6, 34, 82, 226, 687, 3027, 12387, 28738, 258627, 1109487, 2218978, 13313877, 26627758, 159766557, 2929053434 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
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
LINKS
EXAMPLE
h(6) = 3 - 2 = 1, and h(1) = 0, so a(2) = 6.
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}]
CROSSREFS
Cf. A231813.
Sequence in context: A152528 A135733 A072312 * A296808 A319199 A305164
KEYWORD
nonn,more
AUTHOR
Clark Kimberling, Dec 11 2013
EXTENSIONS
a(11)-a(16) from Donovan Johnson, Dec 15 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)