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!)
A194665 Number of k in [1,n] for which <n*r>+<k*r> > 1, where < > = fractional part and r = sqrt(2); row sums of A164664. 4
0, 2, 1, 3, 0, 2, 6, 2, 7, 1, 6, 12, 5, 12, 4, 11, 1, 8, 17, 6, 15, 2, 12, 23, 9, 21, 5, 17, 0, 12, 26, 8, 22, 2, 16, 32, 11, 28, 5, 22, 40, 16, 35, 10, 29, 2, 21, 42, 14, 36, 6, 28, 51, 20, 44, 11, 35, 1, 25, 51, 16, 42, 5, 32, 60, 22, 51, 11, 40, 70, 29, 60, 18, 49, 5, 36 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
r = Sqrt[2]; z = 13;
p[x_] := FractionalPart[x]; f[x_] := Floor[x];
w[n_, k_] := p[r^n] + p[r^k] - p[r^n + r^k]
Flatten[Table[w[n, k], {n, 1, z}, {k, 1, n}]]
TableForm[Table[w[n, k], {n, 1, z}, {k, 1, n}]]
s[n_] := Sum[w[n, k], {k, 1, n}] (* A194663 *)
Table[s[n], {n, 1, 100}]
h[n_, k_] := f[p[n*r] + p[k*r]]
Flatten[Table[h[n, k], {n, 1, z}, {k, 1, n}]]
(* A194664 *)
TableForm[Table[h[n, k], {n, 1, z}, {k, 1, n}]]
t[n_] := Sum[h[n, k], {k, 1, n}]
Table[t[n], {n, 1, 100}] (* A194665 *)
CROSSREFS
Cf. A194664.
Sequence in context: A025643 A127478 A127472 * A004563 A329647 A364235
KEYWORD
nonn
AUTHOR
Clark Kimberling, Sep 01 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 September 14 15:51 EDT 2024. Contains 375924 sequences. (Running on oeis4.)