login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A194741
Number of k such that {-k*sqrt(3)} > {-n*sqrt(3)}, where { } = fractional part.
3
0, 0, 0, 3, 2, 1, 0, 6, 4, 2, 0, 9, 6, 3, 14, 10, 6, 2, 16, 11, 6, 1, 18, 12, 6, 0, 20, 13, 6, 28, 20, 12, 4, 29, 20, 11, 2, 30, 20, 10, 0, 31, 20, 9, 42, 30, 18, 6, 42, 29, 16, 3, 42, 28, 14, 55, 40, 25, 10, 54, 38, 22, 6, 53, 36, 19, 2, 52, 34, 16, 68, 49, 30, 11, 66, 46
OFFSET
1,4
MATHEMATICA
Remove["Global`*"];
r = -Sqrt[3]; p[x_] := FractionalPart[x];
u[n_, k_] := If[p[k*r] <= p[n*r], 1, 0]
v[n_, k_] := If[p[k*r] > p[n*r], 1, 0]
s[n_] := Sum[u[n, k], {k, 1, n}]
t[n_] := Sum[v[n, k], {k, 1, n}]
Table[s[n], {n, 1, 100}] (* A194740 *)
Table[t[n], {n, 1, 100}] (* A194741 *)
CROSSREFS
Sequence in context: A084269 A051427 A194763 * A194753 A359400 A373072
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 02 2011
STATUS
approved