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!)
A325838 a(n) is the product of divisors of the n-th triangular number. 1
1, 3, 36, 100, 225, 441, 21952, 10077696, 91125, 3025, 18974736, 37015056, 8281, 121550625, 42998169600000000, 342102016, 3581577, 5000211, 1303210000, 3782285936100000000, 2847396321, 64009, 442032795979776, 19683000000000000000000, 34328125, 15178486401 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A007955(A000217(n)).
EXAMPLE
The 5th triangular number is 15, whose divisors are {1, 3, 5, 15}; their product is 225.
MATHEMATICA
pd[n_] := n^(DivisorSigma[0, n]/2); t[n_] := n (n + 1)/2; pd /@ t /@ Range[26] (* Amiram Eldar, Sep 07 2019 *)
PROG
(Magma) [&*[d: d in Divisors(n * (n+1) div 2)] : n in [1..1000]]
(PARI) a(n) = vecprod(divisors(n*(n+1)/2)); \\ Michel Marcus, Oct 14 2019
(Python)
from math import isqrt, divisor_count
def A325838(n): return (lambda m:(isqrt(m) if (c:=divisor_count(m)) & 1 else 1)*m**(c//2))(n*(n+1)//2) # Chai Wah Wu, Jun 25 2022
CROSSREFS
See A063440 and A074285 for number and sum of such divisors.
Sequence in context: A158207 A227032 A153448 * A140958 A156189 A158077
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Sep 07 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 16 18:51 EDT 2024. Contains 371750 sequences. (Running on oeis4.)