A147302 Numbers k where records occur in the expression log(k) / log(A147298(k)).
2, 9, 81, 128, 2401, 4375, 6436343
Offset: 1
Links
- Carlos Rivera, Puzzle 901. A question about consecutive integers, The Prime Puzzles and Problems Connection.
Programs
-
Mathematica
logmax = 0; aa = {}; Do[min = 10^100; max = 0; ile = 0; Do[If[GCD[m, n, n - m] == 1, ile = ile + 1; s = m n (n - m); k = FactorInteger[s]; g = 1; Do[g = g k[[p]][[1]], {p, 1, Length[k]}]; If[g > max, max = g; mmax = m]; If[g < min, min = g; mmin = m]], {m, 1, n - 1}]; If[(Log[n]/Log[min]) > logmax, logmax = (Log[n]/Log[min]); AppendTo[aa, n]; Print[{N[logmax], n, mmin, min, mmax, max}]; AppendTo[ff, n]], {n, 2, 2500}]; aa
Comments