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!)
A124655 a(n) = n-th integer from among those positive integers k where every positive integers <= k and coprime to k is also coprime to n. 0
1, 2, 3, 6, 5, 24, 7, 14, 21, 70, 11, 60, 13, 140, 180, 30, 17, 96, 19, 170, 357, 352, 23, 132, 105, 494, 75, 336, 29, 840, 31, 62, 924, 850, 1050, 204, 37, 1064, 1287, 370, 41, 1638, 43, 836, 630, 1564, 47, 276, 301, 470, 2244, 1170, 53, 312, 2695, 728, 2793 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
The positive integers k, where every positive integer <= k and coprime to k is also coprime to 6, form the sequence 1,2,6,12,18,24,30,... So a(6) is the 6th of these integers, which is 24. (3, for example, is not among the sequence of k's because 2 is coprime to 3 and is <= 3, but 2 is not coprime to 6.)
MATHEMATICA
f[n_] := Select[Range[n], GCD[ #, n] == 1 &]; g[n_] := Block[{k = 0, c = n}, While[c > 0, k++; While[Times @@ GCD[f[k], n] > 1, k++ ]; c--; ]; k]; Table[g[n], {n, 60}] (* Ray Chandler, Dec 24 2006 *)
CROSSREFS
Sequence in context: A328316 A206242 A327454 * A338219 A066838 A228151
KEYWORD
nonn
AUTHOR
Leroy Quet, Dec 22 2006
EXTENSIONS
Extended by Ray Chandler, Dec 24 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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)