login
A014609
a(n) = (5n)!/(5!^n).
10
1, 1, 252, 756756, 11732745024, 623360743125120, 88832646059788350720, 28837919555681211870935040, 18975581770994682860770223800320, 23183587808948692737291767860055162880, 49120458506088132224064306071170476903628800, 170878335353097656943918169452451079403744627916800
OFFSET
0,3
COMMENTS
a(n) is also the constant term in product 1 <= i,j <= n, i different from j (1 - x_i/x_j)^5. - Sharon Sela (sharonsela(AT)hotmail.com), Feb 18 2002
REFERENCES
George E. Andrews, Richard Askey, and Ranjan Roy, Special Functions, Cambridge University Press, 1998.
LINKS
Jean-Christophe Novelli and Jean-Yves Thibon, Hopf algebras of m-permutations, (m + 1)-ary trees, and m-parking functions, Advances in Applied Mathematics, Vol. 117 (2020), 102019; arXiv preprint, arXiv:1403.5962 [math.CO], 2014-2020.
FORMULA
a(n) ~ sqrt(Pi) * 5^(4*n+1/2) * n^(5*n+1/2) / (2^(3*n-1/2) * 3^n * exp(5*n)). - Amiram Eldar, Jun 09 2026
MATHEMATICA
a[n_] := (5*n)!/(120^n); Array[a, 11, 0] (* Amiram Eldar, Jun 09 2026 *)
PROG
(PARI) a(n)=if(n<0, 0, (5*n)!/120^n)
CROSSREFS
Column 5 of A187783.
Sequence in context: A259452 A177302 A177303 * A172557 A068275 A068287
KEYWORD
nonn,easy
AUTHOR
BjornE (mdeans(AT)algonet.se)
STATUS
approved