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!)
A307101 a(n) = Product_{d|n} (tau(d)*pod(d)) where tau(k) = the number of divisors of k (A000005) and pod(k) = the product of the divisors of k (A007955). 1
1, 4, 6, 96, 10, 3456, 14, 24576, 486, 16000, 22, 859963392, 26, 43904, 54000, 125829120, 34, 9795520512, 38, 18432000000, 148176, 170368, 46, 584325558976905216, 3750, 281216, 1417176, 138784407552, 58, 80621568000000000, 62, 24739011624960, 574992, 628864 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
n divides a(n) for all n.
LINKS
FORMULA
a(n) = Product_{d|n} tau(d) * Product_{d|n} pod(d) = A211776(n) * A266265(n).
a(p) = 2p for p = primes (A000040).
EXAMPLE
a(6) = (tau(1)*pod(1)) * (tau(2)*pod(2)) * (tau(3)*pod(3)) * (tau(6)*pod(6)) = (1*1) * (2*2) * (2*3) * (4*36) = 3456.
PROG
(Magma) [&*[# [c: c in Divisors(d)] * &*[c: c in Divisors(d)]: d in Divisors(n)]: n in [1..100]]
(PARI) a(n) = my(d=divisors(n)); prod(k=1, #d, my(dd=divisors(d[k])); #dd*vecprod(dd)); \\ Michel Marcus, Apr 25 2019
CROSSREFS
Sequence in context: A012897 A013079 A222495 * A087934 A052684 A213128
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Apr 25 2019
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)