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!)
A184391 a(n) = product of numbers from 1 to A007955(n). 5
1, 2, 6, 40320, 120, 371993326789901217467999448150835200000000, 5040, 126886932185884164103433389335161480802865516174545192198801894375214704230400000000000000, 10888869450418352160768000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Robert P. P. McKone, Table of n, a(n) for n = 1..11
FORMULA
a(n) = A007955(n)! = A000142(A007955(n)).
MATHEMATICA
A184391[n_] := Product[i, {i, 1, n^(DivisorSigma[0, n]/2)}]; Table[A184391[n], {n, 1, 9}] (* Robert P. P. McKone, Feb 04 2021 *)
PROG
(Python)
from math import isqrt, factorial
from sympy import divisor_count
def A184391(n): return factorial((isqrt(n) if (c:=divisor_count(n)) & 1 else 1)*n**(c//2)) # Chai Wah Wu, Jun 25 2022
CROSSREFS
Sequence in context: A115658 A337096 A005607 * A161563 A135408 A165710
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 12 2011
EXTENSIONS
a(9) from Robert P. P. McKone, Feb 04 2021
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)