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

A272237
a(n) = Product_{k=0..n} (n^2+k)^k.
3
2, 180, 2090880, 6044699520000, 7151106328088486400000, 5159620144413185246982598164480000, 3167269298042065159436486399933762922086400000000, 2200712918907364598767850489247066133407004510957047455416320000000
OFFSET
1,1
FORMULA
a(n) = ((n^2+n)!)^(n+1) / A272238(n).
a(n) ~ exp(n/3 + 3/8) * n^(n*(n+1)).
MATHEMATICA
Table[Product[(n^2+k)^k, {k, 0, n}], {n, 1, 10}]
Table[((n^2+n)!)^(n+1) * BarnesG[n^2 + 1] / BarnesG[n^2 + n + 2], {n, 1, 10}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vaclav Kotesovec, Apr 23 2016
STATUS
approved