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!)
A334664 a(n) = Product_{d|n} gcd(d, tau(d)). 2
1, 2, 1, 2, 1, 4, 1, 8, 3, 4, 1, 24, 1, 4, 1, 8, 1, 72, 1, 8, 1, 4, 1, 768, 1, 4, 3, 8, 1, 16, 1, 16, 1, 4, 1, 3888, 1, 4, 1, 256, 1, 16, 1, 8, 9, 4, 1, 1536, 1, 8, 1, 8, 1, 144, 1, 256, 1, 4, 1, 2304, 1, 4, 9, 16, 1, 16, 1, 8, 1, 16, 1, 1492992, 1, 4, 3, 8, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(p) = 1 for p = odd primes (A065091).
EXAMPLE
a(6) = gcd(1, tau(1)) * gcd(2, tau(2)) * gcd(3, tau(3)) * gcd(6, tau(6)) = gcd(1, 1) * gcd(2, 2) * gcd(3, 2) * gcd(6, 4) = 1 * 2 * 1 * 2 = 4.
MATHEMATICA
Table[Times@@GCD[Divisors[n], DivisorSigma[0, Divisors[n]]], {n, 80}] (* Harvey P. Dale, Mar 30 2024 *)
PROG
(Magma) [&*[GCD(d, #Divisors(d)): d in Divisors(n)]: n in [1..100]]
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, gcd(d[k], numdiv(d[k]))); \\ Michel Marcus, May 08-11 2020
CROSSREFS
Cf. A322979 (Sum_{d|n} gcd(d, tau(d))), A334491 (Product_{d|n} gcd(d, sigma(d))).
Cf. A000005 (tau(n)), A000203 (sigma(n)), A009191 (gcd(n, tau(n))).
Sequence in context: A055684 A300584 A024559 * A061797 A068341 A360738
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, May 07 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 April 19 08:08 EDT 2024. Contains 371782 sequences. (Running on oeis4.)