A097476 a(n) = Product_{i=0..n-1} ((2i)!)^2.
1, 4, 2304, 1194393600, 1941728542064640000, 25569049282962188245401600000000, 5866627428836325123819714259080708096000000000000
Offset: 1
Keywords
References
- C. Krattenthaler, Advanced Determinant Calculus, p. 46
Links
- C. Krattenthaler, Advanced Determinant Calculus, Séminaire Lotharingien Combin. 42 ("The Andrews Festschrift") (1999), Article B42q, 67 pp.
Programs
-
Mathematica
Table[Product[((2i)!)^2,{i,0,n-1}],{n,8}] (* Harvey P. Dale, Jul 05 2021 *)
-
PARI
a(n)=prod(i=0,n-1,((2*i)!)^2)
Comments