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!)
A194762 Number of k such that {k*2^(1/3)} < {n*2^(1/3)}, where { } = fractional part. 3

%I #6 Mar 30 2012 18:57:44

%S 1,2,3,1,3,5,7,2,5,8,11,3,7,11,15,4,9,14,19,5,11,17,23,6,13,20,1,9,17,

%T 25,3,12,21,30,5,15,25,35,7,18,29,40,9,21,33,45,11,24,37,50,13,27,41,

%U 2,17,32,47,5,21,37,53,8,25,42,59,11,29,47,65,14,33,52,71,17,37

%N Number of k such that {k*2^(1/3)} < {n*2^(1/3)}, where { } = fractional part.

%t r = 2^(1/3); p[x_] := FractionalPart[x];

%t u[n_, k_] := If[p[k*r] <= p[n*r], 1, 0]

%t v[n_, k_] := If[p[k*r] > p[n*r], 1, 0]

%t s[n_] := Sum[u[n, k], {k, 1, n}]

%t t[n_] := Sum[v[n, k], {k, 1, n}]

%t Table[s[n], {n, 1, 100}] (* A194762 *)

%t Table[t[n], {n, 1, 100}] (* A194763 *)

%Y Cf. A194763, A194738.

%K nonn

%O 1,2

%A _Clark Kimberling_, Sep 02 2011

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 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)