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!)
A135459 Numbers n such that the difference between sqrt(2)*n and the nearest integer is smaller than 1/10. 1
5, 12, 17, 24, 29, 34, 36, 41, 46, 53, 58, 63, 65, 70, 75, 82, 87, 94, 99, 104, 106, 111, 116, 123, 128, 133, 135, 140, 145, 152, 157, 164, 169, 174, 176, 181, 186, 193, 198, 203, 205, 210, 215, 222, 227, 232, 234, 239, 244, 251, 256, 263, 268, 273, 275, 280 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The equidistribution theorem states that n*sqrt(2) is equidistributed modulo 1, therefore lim_{n->infinity} a(n)/n = 5.
LINKS
EXAMPLE
24 is in the list because sqrt(2)*24 = 33.94 which is within 0.1 of an integer.
MAPLE
filter:= proc(n) local m;
m:= floor(n*sqrt(2));
2*n^2 < (m+1/10)^2 or 2*n^2 > (m+9/10)^2
end proc:
select(filter, [$1..1000]); # Robert Israel, Oct 14 2016
MATHEMATICA
Select[Range[300], Abs[Sqrt[2]*# - If[Sqrt[2]*# - Floor[Sqrt[2]*# ] < 1/2, Floor[Sqrt[2]*# ], Ceiling[Sqrt[2]*# ]]] < 0.1 &]
CROSSREFS
Sequence in context: A089988 A314286 A314287 * A214067 A290494 A246787
KEYWORD
nonn
AUTHOR
Ben Paul Thurston, Dec 15 2007
EXTENSIONS
Edited and extended by Stefan Steinerberger, Dec 16 2007
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)