[go: up one dir, main page]

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!)
A259585 Numbers k such that [r[s*k]] - [s[r*k]] = -1, where r = sqrt(2), s=sqrt(3), and [ ] = floor. 4
5, 8, 15, 29, 34, 39, 42, 45, 46, 49, 56, 58, 68, 71, 75, 87, 92, 95, 99, 102, 105, 109, 112, 121, 124, 127, 128, 131, 145, 150, 157, 162, 169, 174, 177, 184, 187, 191, 198, 203, 206, 213, 232, 237, 240, 243, 244, 247, 254, 256, 266, 269, 273, 285, 290, 295 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It is easy to prove that [r[s*k]] - [s[r*k]] ranges from -2 to 2.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Clark Kimberling)
EXAMPLE
For k = 1 to 10, the values of [r[s*k]] - [s[r*k]] are 0, 1, 1, 0, -1, 1, 1, -1, 1, 0, so that a(1) = 5.
MATHEMATICA
z = 12000; r = Sqrt[2]; s = Sqrt[3];
u = Table[Floor[r*Floor[s*n]], {n, 1, z}];
v = Table[Floor[s*Floor[r*n]], {n, 1, z}];
Flatten[Position[u - v, -2]] (* A259584 *)
Take[Flatten[Position[u - v, -1]], 100] (* A259585 *)
Take[Flatten[Position[u - v, 0]], 100] (* A259725 *)
Take[Flatten[Position[u - v, 1]], 100] (* A259587 *)
Take[Flatten[Position[u - v, 2]], 100] (* A259586 *)
CROSSREFS
Sequence in context: A314560 A327605 A259724 * A220034 A063731 A129316
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 15 2015
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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)