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!)
A120882 a(n) is the number of k's, for 1 <= k <= n, where gcd(k,floor(n/k)) = 1. 2
1, 2, 3, 3, 4, 6, 7, 6, 6, 8, 9, 10, 11, 13, 14, 12, 13, 14, 15, 15, 17, 19, 20, 19, 19, 21, 20, 20, 21, 27, 28, 25, 26, 28, 29, 28, 29, 31, 33, 31, 32, 36, 37, 37, 36, 38, 39, 37, 37, 38, 39, 39, 40, 40, 42, 41, 43, 45, 46, 49, 50, 52, 52, 48, 49, 54, 55, 55, 56, 60, 61, 57, 58 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A120881(n) + a(n) = n.
LINKS
EXAMPLE
For n = 8, we have the pairs {k,floor(n/k)} of {1,8},{2,4},{3,2},{4,2},{5,1},{6,1},{7,1},{8,1}. From these pairs we get the GCD's 1,2,1,2,1,1,1,1. 6 of these GCD's are = 1. So a(8) = 6.
MAPLE
a:=proc(n) local ct, k: ct:=0: for k from 1 to n do if gcd(k, floor(n/k))=1 then ct:=ct+1 else ct:=ct: fi: od: ct; end: seq(a(n), n=1..85); # Emeric Deutsch, Jul 24 2006
MATHEMATICA
Table[Length[Select[Table[GCD[k, Floor[n/k]], {k, 1, n}], # == 1 &]], {n, 1, 80}] (* Stefan Steinerberger, Jul 23 2006 *)
CROSSREFS
Cf. A120881.
Sequence in context: A188215 A162627 A023158 * A102187 A133610 A256211
KEYWORD
nonn
AUTHOR
Leroy Quet, Jul 12 2006
EXTENSIONS
More terms from Emeric Deutsch, Stefan Steinerberger and Ryan Propper, Jul 23 2006
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 March 28 07:20 EDT 2024. Contains 371235 sequences. (Running on oeis4.)