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!)
A194415 Numbers m such that Sum_{k=1..m} (<1/3 + k*r> - <k*r>) < 0, where r=sqrt(3) and < > denotes fractional part. 5
1, 2, 4, 5, 8, 16, 17, 19, 20, 23, 31, 32, 34, 35, 38, 46, 47, 49, 50, 53, 56, 57, 58, 59, 60, 61, 62, 64, 65, 68, 71, 72, 73, 74, 75, 76, 77, 79, 80, 83, 86, 87, 88, 89, 90, 91, 92, 94, 95, 98, 101, 102, 103, 104, 105, 106, 107, 109, 110, 112, 113, 114, 115, 116 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A194368.
LINKS
MATHEMATICA
r = Sqrt[3]; c = 1/3;
x[n_] := Sum[FractionalPart[k*r], {k, 1, n}]
y[n_] := Sum[FractionalPart[c + k*r], {k, 1, n}]
t1 = Table[If[y[n] < x[n], 1, 0], {n, 1, 150}];
Flatten[Position[t1, 1]] (* A194415 *)
t2 = Table[If[y[n] == x[n], 1, 0], {n, 1, 300}];
Flatten[Position[t2, 1]] (* A194416 *)
%/3 (* A194417 *)
t3 = Table[If[y[n] > x[n], 1, 0], {n, 1, 500}];
Flatten[Position[t3, 1]] (* A194418 *)
CROSSREFS
Sequence in context: A240075 A272229 A229083 * A364779 A293536 A274796
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 24 2011
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.)