The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A137927 a(n) = the largest divisor of A000005(n) that is coprime to n. (A000005(n) = the number of positive divisors of n.). 5
1, 1, 2, 3, 2, 1, 2, 1, 1, 1, 2, 1, 2, 1, 4, 5, 2, 1, 2, 3, 4, 1, 2, 1, 3, 1, 4, 3, 2, 1, 2, 3, 4, 1, 4, 1, 2, 1, 4, 1, 2, 1, 2, 3, 2, 1, 2, 5, 3, 3, 4, 3, 2, 1, 4, 1, 4, 1, 2, 1, 2, 1, 2, 7, 4, 1, 2, 3, 4, 1, 2, 1, 2, 1, 2, 3, 4, 1, 2, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Apparently also the denominator of A007955(n)/A000005(n). See A291186. - Jaroslav Krizek, Sep 05 2017
LINKS
EXAMPLE
20 has 6 positive divisors. The divisors of 6 are 1,2,3,6. The divisors of 6 that are coprime to 20 are 1 and 3. 3 is the largest of these; so a(20) = 3.
MAPLE
A137927 := proc(n)
local a;
a := 1 ;
for d in numtheory[divisors](numtheory[tau](n)) do
if igcd(d, n) = 1 then
a := max(a, d) ;
end if:
end do:
a ;
end proc:
seq(A137927(n), n=1..100) ; # R. J. Mathar, Sep 22 2017
MATHEMATICA
Table[Select[Divisors[Length[Divisors[n]]], GCD[ #, n] == 1 &][[ -1]], {n, 1, 80}] (* Stefan Steinerberger, Mar 09 2008 *)
PROG
(PARI) a(n) = my(d=divisors(numdiv(n))); forstep(k=#d, 1, -1, if (gcd(d[k], n) == 1, return (d[k]))); \\ Michel Marcus, Sep 22 2017; corrected Jun 13 2022
CROSSREFS
Sequence in context: A316657 A277914 A126626 * A321864 A084311 A353486
KEYWORD
nonn
AUTHOR
Leroy Quet, Feb 23 2008
EXTENSIONS
More terms from Stefan Steinerberger, Mar 09 2008
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 May 13 15:50 EDT 2024. Contains 372521 sequences. (Running on oeis4.)