One way to interpret this result is that it comes from the periodicity of the continued fraction expansion of in the sense that it has no "better-than-expected" rational convergents, whereas for example with we may stop at the 292 to get a good approximation (355/113 I believe).
So one may look at numbers of the form , which satisfy , or So a few good sequences may be for example where , the so-called "silver ratio", or the same for
EDIT: These are in some cases pretty good approximations; one way to measure the "well-distribution" of such a sequence is to take the fractional parts , sort them, compute the maximum difference between consecutive terms, and multiply this by to get some number in the range . This can be accomplished in one line in Mathematica as follows:
WellDistribution[x_,M_]:=
Max[Differences[Sort[Table[N[FractionalPart[x*m]], {m, 1, M}]]]]*M;
Some interesting things happen with this when we vary ; perhaps I'll make a new post out of it.
No comments:
Post a Comment