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”).

A272248
a(n) = Product_{k=0..n} (n^5 + k^5).
7
0, 2, 67584, 7924375800, 2876035930521600, 2693451205324687500000, 5648896640332217707816550400, 23819277009290664033936067933468800, 185754160490281505676324140907107450880000, 2507604631016507710974687639612411760216253760000
OFFSET
0,2
COMMENTS
In general, for p>=1, Product_{k=0..n} (n^p + k^p) ~ sqrt(2) * n^(p*(n+1)) * exp(n*Sum_{j>=1} (-1)^(j+1) / (j*(1 + j*p))).
FORMULA
a(n) ~ 2^(2*n+1/2) * phi^(sqrt(5)*n) * n^(5*n+5) / exp((5-sqrt(phi)*Pi/5^(1/4))*n), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio.
MATHEMATICA
Table[Product[n^5+k^5, {k, 0, n}], {n, 0, 10}]
KEYWORD
nonn,easy
AUTHOR
Vaclav Kotesovec, Apr 23 2016
STATUS
approved