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!)
A280581 a(n) = the product of divisors of sum of divisors of n. 3
1, 3, 8, 7, 36, 1728, 64, 225, 13, 5832, 1728, 21952, 196, 331776, 331776, 31, 5832, 1521, 8000, 3111696, 32768, 10077696, 331776, 46656000000, 31, 3111696, 2560000, 9834496, 810000, 139314069504, 32768, 250047, 254803968, 8503056, 254803968, 8281, 1444 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) < A007955(n) for numbers n in A219364.
a(n) | A007955(n) for numbers n in A219363.
A007955(n) | a(n) for numbers n in A219362.
n | a(n) for numbers n in A175200.
LINKS
FORMULA
a(n) = A007955(A000203(n)).
EXAMPLE
For n = 5; a(n) = product of divisors of sigma(5) = 1*2*3*6 = 36.
MATHEMATICA
Table[Times @@ Divisors@ DivisorSigma[1, n], {n, 37}] (* Michael De Vlieger, Jan 06 2017 *)
a[n_] := (s = DivisorSigma[1, n])^(DivisorSigma[0, s]/2); Array[a, 40] (* Amiram Eldar, Jun 26 2022 *)
PROG
(Magma) [&*[d: d in Divisors(SumOfDivisors(n))]: n in [1..100]]
(PARI) a(n) = my(k = 1); fordiv(sigma(n), d, k*=d); k; \\ Michel Marcus, Jan 06 2017
(Python)
from math import isqrt
from sympy import divisor_count, divisor_sigma
def A280581(n): return (lambda m:isqrt(m)**c if (c:=divisor_count(m)) & 1 else m**(c//2))(divisor_sigma(n)) # Chai Wah Wu, Jun 25 2022
CROSSREFS
Sequence in context: A122237 A307162 A233418 * A278755 A016625 A019630
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 05 2017
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 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)