login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A268506
a(n) = Product_{k=0..n} (5*k)!.
14
1, 120, 435456000, 569434649591808000000, 1385378702517271000054360965120000000000, 21488900044302744250061179567064173417691432878080000000000000000
OFFSET
0,2
COMMENTS
Partial products of A100734. - Michel Marcus, Jul 06 2019
LINKS
FORMULA
a(n) ~ Gamma(1/5)^(3/5) * Gamma(2/5)^(2/5) * Gamma(3/5)^(1/5) * 2^(n/2 - 1/10) * Pi^(n/2 - 1/10) * 5^(23/60 + 3*n + 5*n^2/2) * exp(1/60 - 3*n - 15*n^2/4) * n^(41/60 + 3*n + 5*n^2/2) / A^(1/5), where A = A074962 is the Glaisher-Kinkelin constant.
MATHEMATICA
Table[Product[(5*k)!, {k, 0, n}], {n, 0, 8}]
PROG
(PARI) {a(n) = prod(k=1, n, (5*k)!)} \\ Seiichi Manyama, Jul 06 2019
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Apr 16 2016
STATUS
approved