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

A323540
a(n) = Product_{k=0..n} (k^2 + (n-k)^2).
19
0, 1, 32, 2025, 204800, 30525625, 6307891200, 1727713080625, 606076928000000, 265058191985900625, 141409376995328000000, 90403125002859606705625, 68229510086445571768320000, 60026603304487418050791015625, 60893916244529680380723200000000
OFFSET
0,3
LINKS
FORMULA
a(n) ~ exp((Pi-4)*n/2) * n^(2*n+2).
MATHEMATICA
Table[Product[k^2+(n-k)^2, {k, 0, n}], {n, 0, 20}]
PROG
(PARI) m=2; vector(20, n, n--; prod(k=0, n, k^m + (n-k)^m)) \\ G. C. Greubel, Jan 18 2019
(Magma) m:=2; [(&*[k^m + (n-k)^m: k in [0..n]]): n in [0..20]]; // G. C. Greubel, Jan 18 2019
(Sage) m=2; [product(k^m +(n-k)^m for k in (0..n)) for n in (0..20)] # G. C. Greubel, Jan 18 2019
CROSSREFS
Cf. 2*A000330 and A006331 (with sum instead of product).
Sequence in context: A248073 A264015 A239646 * A304123 A291826 A302270
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Jan 17 2019
STATUS
approved