The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A365269 a(n) = Product_{k=1..n} A002720(k). 1
1, 2, 14, 476, 99484, 153802264, 2049722772328, 268353804798726416, 386893462638663037013264, 6798536031341327693983294520096, 1595359632648441879172205168815801694176, 5432770180592069558569584672506997142250856260032 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
log(a(n)) ~ log(BarnesG(n+2)) + 4*n^(3/2)/3 - n*log(n)/4 - (1/4 + log(2) + log(Pi)/2)*n + 55*sqrt(n)/24.
log(a(n)) ~ n^2*log(n)/2 - 3*n^2/4 + 4*n^(3/2)/3 + 3*n*log(n)/4 - (5/4 + log(2)/2)*n + 55*sqrt(n)/24.
MATHEMATICA
Table[Product[k! * LaguerreL[k, -1], {k, 1, n}], {n, 0, 15}]
Table[BarnesG[n+2] * Product[LaguerreL[k, -1], {k, 1, n}], {n, 0, 15}]
PROG
(Python)
from math import prod, factorial, comb
def A365269(n): return prod(sum(factorial(m)*comb(k, m)**2 for m in range(k+1)) for k in range(1, n+1)) # Chai Wah Wu, Aug 31 2023
CROSSREFS
Sequence in context: A307123 A324306 A160710 * A271145 A357508 A277134
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Aug 30 2023
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 May 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)