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!)
A334731 a(n) = Product_{d|n} gcd(sigma(d), pod(d)) where sigma(k) is the sum of divisors of k (A000203) and pod(k) is the product of divisors of k (A007955). 3
1, 1, 1, 1, 1, 12, 1, 1, 1, 2, 1, 48, 1, 4, 3, 1, 1, 36, 1, 4, 1, 4, 1, 576, 1, 2, 1, 224, 1, 5184, 1, 1, 3, 2, 1, 144, 1, 4, 1, 40, 1, 2304, 1, 16, 9, 4, 1, 2304, 1, 2, 9, 4, 1, 864, 1, 1792, 1, 2, 1, 995328, 1, 4, 1, 1, 1, 20736, 1, 4, 3, 128, 1, 5184, 1, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
FORMULA
a(p) = 1 for p = primes (A000040).
EXAMPLE
a(6) = gcd(sigma(1), pod(1)) * gcd(sigma(2), pod(2)) * gcd(sigma(3), pod(3)) * gcd(sigma(6), pod(6)) = gcd(1, 1) * gcd(3, 2) * gcd(4, 3) * gcd(12, 36) = 1 * 1 * 1 * 12 = 12.
MATHEMATICA
a[n_] := Product[GCD[DivisorSigma[1, d], d^(DivisorSigma[0, d]/2)], {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) pod(n) = vecprod(divisors(n));
a(n) = my(d=divisors(n)); prod(k=1, #d, gcd(sigma(d[k]), pod(d[k]))); \\ Michel Marcus, May 09-11 2020
CROSSREFS
Cf. A334729 (Product_{d|n} gcd(tau(d), sigma(d))), A334663 (Sum_{d|n} gcd(sigma(d), pod(d))).
Cf. A000005 (tau(n)), A000203 (sigma(n)), A306682 (gcd(sigma(n), pod(n))).
Sequence in context: A010208 A306682 A327154 * A335948 A010209 A058306
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 July 9 09:07 EDT 2024. Contains 374174 sequences. (Running on oeis4.)