OFFSET
1,2
COMMENTS
Suppose that x < y. The least splitter of x and y is introduced at A227631 as the least positive integer d such that x <= c/d < y for some integer c; the number c/d is called the least splitting rational of x and y. It appears that c/d is an integer (i.e., d = 1) for rationals in positions given by A082315; e.g. 1, 7, 56, ...
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..1000
EXAMPLE
The first 15 splitting rationals are 1/1, 3/2, 5/3, 7/4, 9/5, 17/9, 2/1, 27/13, 17/8, 13/6, 11/5, 9/4, 16/7, 7/3, 26/11.
MATHEMATICA
z = 16; r[x_, y_] := Module[{a, b, x1 = Min[{x, y}], y1 = Max[{x, y}]}, If[x == y, x, b = NestWhile[#1 + 1 &, 1, ! (a = Ceiling[#1 x1 - 1]) < Ceiling[#1 y1] - 1 &]; (a + 1)/b]]; s[n_] := s[n] = Sum[1/(k - 1)!, {k, 1, n}]; N[Table[s[k], {k, 1, z}]]; t = Table[r[s[n], s[n + 1]], {n, 2, z}]; Denominator[t] (* Peter J. C. Moses, Jul 15 2013 *)
CROSSREFS
KEYWORD
nonn,frac,easy
AUTHOR
Clark Kimberling, Jul 30 2013
STATUS
approved