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!)
A324981 a(n) = Product_{d|n} (d*pod(d)) where pod(k) = the product of the divisors of k (A007955). 0
1, 4, 9, 128, 25, 7776, 49, 65536, 2187, 100000, 121, 5159780352, 169, 537824, 759375, 1073741824, 289, 198359290368, 361, 512000000000, 4084101, 5153632, 529, 21035720123168587776, 78125, 11881376, 43046721, 10578455953408, 841, 15943230000000000000, 961 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = (Product_{d|n} d) * (Product_{d|n} pod(d)) = A007955(n) * A266265(n).
a(p) = p^2 for p = primes (A000040).
EXAMPLE
a(6) = 1*pod(1) * 2*pod(2) * 3*pod(3) * 6*pod(6) = (1*1) * (2*2) * (3*3) * (6*36) = 7776.
MATHEMATICA
Array[Times @@ Map[# Apply[Times, Divisors@ #] &, Divisors@ #] &, 31] (* Michael De Vlieger, Mar 24 2019 *)
PROG
(Magma) [&*[d * &*[c: c in Divisors(d)]: d in Divisors(n)]: n in [1..100]]
(PARI) a(n) = my(d=divisors(n), p=1); fordiv(n, d, p*=d*vecprod(divisors(d))); p; \\ Michel Marcus, Mar 22 2019
CROSSREFS
Cf. A007955, A174933 (Sum_{d|n} (d*pod(d))), A266265.
Sequence in context: A063783 A168138 A267898 * A128524 A027451 A227744
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 22 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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)