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!)
A334807 a(n) = Product_{d|n} lcm(tau(d), pod(d)) where tau(k) is the number of divisors of k (A000005) and pod(k) is the product of divisors of k (A007955). 0
1, 2, 6, 48, 10, 432, 14, 3072, 162, 2000, 22, 17915904, 26, 5488, 54000, 15728640, 34, 68024448, 38, 1152000000, 148176, 21296, 46, 380420285792256, 3750, 35152, 472392, 8674025472, 58, 314928000000000, 62, 1546188226560, 574992, 78608, 686000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(p) = 2p for p = odd primes (A065091).
EXAMPLE
a(6) = lcm(tau(1), pod(1)) * lcm(tau(2), pod(2)) * lcm(tau(3), pod(3)) * lcm(tau(6), pod(6)) = lcm(1, 1) * lcm(2, 2) * lcm(2, 3) * lcm(4, 36) = 1 * 2 * 6 * 36 = 432.
MATHEMATICA
a[n_] := Product[LCM[DivisorSigma[0, d], Times @@ Divisors[d]], {d, Divisors[n]}]; Array[a, 35] (* Amiram Eldar, Jun 27 2020 *)
PROG
(Magma) [&*[LCM(#Divisors(d), &*Divisors(d)): d in Divisors(n)]: n in [1..100]]
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, lcm(numdiv(d[k]), vecprod(divisors(d[k])))); \\ Michel Marcus, Jun 27 2020
CROSSREFS
Cf. A334793 (Sum_{d|n} lcm(tau(d), pod(d))), A334730 (Product_{d|n} gcd(tau(d), pod(d))).
Cf. A000005 (tau(n)), A007955 (pod(n)), A324528 (lcm(tau(n), pod(n))).
Sequence in context: A145502 A274702 A072444 * A052596 A344676 A098710
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jun 26 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 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)