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!)
A342181 Product of first n Robbins numbers. 0
1, 1, 2, 14, 588, 252252, 1875745872, 409565359659456, 4443872618422784042496, 4052080633200943761869999708160, 524883317743439723147432404145717855232000, 16321637725818077271987866314412476606229589461376000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Eric Weisstein's World of Mathematics, Alternating Sign Matrix.
Wikipedia, Barnes G-function.
FORMULA
a(n) = Product_{k=1..n} A005130(k).
a(n) ~ Pi^(n/3 + 1/6) * 3^(n^3/2 + 3*n^2/4 + n/18 - 13/216) * exp(n/6 + 11*zeta(3)/(144*Pi^2) + 19/216) / (BarnesG(1/3)^(2/3) * n^(5*n/36 + 5/72) * 2^(2*n^3/3 + n^2 - n/12 - 1/12) * A^(n/3 + 19/18) * Gamma(1/3)^(2*n/3 + 7/9)), where A is the Glaisher-Kinkelin constant A074962.
MAPLE
b:= proc(n) option remember; `if`(n<2, 1, b(n-1)*
(n-1)!*(3*n-2)!/((2*n-2)!*(2*n-1)!))
end:
a:= proc(n) a(n):=`if`(n=0, 1, a(n-1)*b(n)) end:
seq(a(n), n=0..12); # Alois P. Heinz, Mar 04 2021
MATHEMATICA
Table[Product[Product[(3*j + 1)!/(k + j)!, {j, 0, k-1}], {k, 1, n}], {n, 0, 12}]
FoldList[Times, 1, Table[Product[(3*j + 1)!/(n + j)!, {j, 0, n - 1}], {n, 1, 12}]]
CROSSREFS
Cf. A005130.
Sequence in context: A015184 A012002 A012005 * A294353 A156172 A013036
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Mar 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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)