A384017 a(n) = [x^n] Product_{k=0..n} (1 + k*x)^5.
1, 5, 100, 3510, 177370, 11732175, 960453825, 93791830160, 10644367637490, 1376936603007075, 200002385378370350, 32233130183113838550, 5708169533474858008905, 1101836121788665346133960, 230256048227047074266497400, 51791322674249971562728368000
Offset: 0
Keywords
Programs
-
Mathematica
Table[SeriesCoefficient[Product[(1+k*x)^5, {k, 1, n}], {x, 0, n}], {n, 0, 15}] (* Vaclav Kotesovec, May 19 2025 *)
-
PARI
a(n) = polcoef(prod(k=1, n, 1+k*x)^5, n);
Formula
a(n) = Sum_{0<=i, j, k, l, m<=n and i+j+k+l+m=4*n} |Stirling1(n+1,i+1) * Stirling1(n+1,j+1) * Stirling1(n+1,k+1) * Stirling1(n+1,l+1) * Stirling1(n+1,m+1)|.
a(n) ~ 5^(5*n + 5/2) * w^(5*n+3) * n^(n - 1/2) / (2^(8*n + 13/2) * sqrt(Pi*(w-1)) * exp(n) * (5*w-4)^n), where w = -LambertW(-1,-4*exp(-4/5)/5) = 1.2308422097842590367678406745433500325966... - Vaclav Kotesovec, May 19 2025
Comments