cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A280420 Product of divisors of n!.

Original entry on oeis.org

1, 1, 2, 36, 331776, 42998169600000000, 7244150201408990671659859968000000000000000, 1182813011613388022005884215741990164001544397058025540221953280041975323323006976000000000000000000000000000000
Offset: 0

Views

Author

Matthew Campbell, Jan 02 2017

Keywords

Crossrefs

Programs

  • Maple
    A280420 := proc(n)
        mul(d,d=numtheory[divisors](n!)) ;
    end proc: # R. J. Mathar, Jan 04 2017
  • Mathematica
    Table[(n!)^(DivisorSigma[0, n!]/2), {n, 0, 10}]
  • Python
    from math import isqrt, factorial
    from sympy import divisor_count
    def A280420(n): return (lambda m:isqrt(m)**c if (c:=divisor_count(m)) & 1 else m**(c//2))(factorial(n)) # Chai Wah Wu, Jun 25 2022

Formula

a(n) = A007955(A000142(n)).
a(n) = (n!)^(d(n!)/2) = (A000142(n))^(A000005(A000142(n))/2).