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!)
A240023 Product of factorials of prime divisors of n (with multiplicity). 1
1, 2, 6, 4, 120, 12, 5040, 8, 36, 240, 39916800, 24, 6227020800, 10080, 720, 16, 355687428096000, 72, 121645100408832000, 480, 30240, 79833600, 25852016738884976640000, 48, 14400, 12454041600, 216, 20160, 8841761993739701954543616000000, 1440 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Completely multiplicative with a(p) = p!.
Sum_{n>=1} 1/a(n) = 1/Product_{p prime} (1 - 1/p!) = 2.42064841562992124691... . - Amiram Eldar, Dec 24 2022
MAPLE
a:= n-> mul(i[1]!^i[2], i=ifactors(n)[2]):
seq(a(n), n=1..30); # Alois P. Heinz, Mar 30 2014
MATHEMATICA
f[p_, e_] := p!^e; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 30] (* Amiram Eldar, Aug 04 2022 *)
PROG
(PARI) a(n)=local(fm=factor(n)); prod(k=1, matsize(fm)[1], fm[k, 1]!^fm[k, 2])
CROSSREFS
Cf. A000142.
Sequence in context: A210420 A306585 A118138 * A004583 A348720 A356476
KEYWORD
nonn,mult
AUTHOR
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 28 18:07 EDT 2024. Contains 372092 sequences. (Running on oeis4.)