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!)
A334729 a(n) = Product_{d|n} gcd(tau(d), sigma(d)). 5
1, 1, 2, 1, 2, 8, 2, 1, 2, 4, 2, 16, 2, 8, 16, 1, 2, 24, 2, 24, 16, 8, 2, 64, 2, 4, 8, 16, 2, 1024, 2, 3, 16, 4, 16, 48, 2, 8, 16, 48, 2, 2048, 2, 48, 96, 8, 2, 128, 6, 12, 16, 8, 2, 768, 16, 128, 16, 4, 2, 147456, 2, 8, 32, 3, 16, 2048, 2, 24, 16, 1024, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(p) = 2 for p = odd primes (A065091).
EXAMPLE
a(6) = gcd(tau(1), sigma(1)) * gcd(tau(2), sigma(2)) * gcd(tau(3), sigma(3)) * gcd(tau(6), sigma(6)) = gcd(1, 1) * gcd(2, 3) * gcd(2, 4) * gcd(4, 12) = 1 * 1 * 2 * 4 = 8.
MAPLE
g:= proc(d) option remember; igcd(numtheory:-tau(d), numtheory:-sigma(d)) end proc:
f:= n -> mul(g(d), d = numtheory:-divisors(n)):
map(f, [$1..100]); # Robert Israel, May 11 2020
MATHEMATICA
a[n_] := Product[GCD[DivisorSigma[0, d], DivisorSigma[1, d]], {d, Divisors[n]}]; Array[a, 100] (* Amiram Eldar, May 09 2020 *)
PROG
(Magma) [&*[GCD(#Divisors(d), &+Divisors(d)): d in Divisors(n)]: n in [1..100]]
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, gcd(numdiv(d[k]), sigma(d[k]))); \\ Michel Marcus, May 09-11 2020
CROSSREFS
Cf. A334491 (Product_{d|n} gcd(d, sigma(d))), A334579 (Sum_{d|n} gcd(tau(d), sigma(d))).
Cf. A000005 (tau(n)), A000203 (sigma(n)), A009205 (gcd(tau(n), sigma(n))).
Sequence in context: A173755 A140894 A208747 * A221878 A219109 A137305
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, May 09 2020
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 21 10:20 EDT 2024. Contains 372735 sequences. (Running on oeis4.)