The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A323540 a(n) = Product_{k=0..n} (k^2 + (n-k)^2). 16
0, 1, 32, 2025, 204800, 30525625, 6307891200, 1727713080625, 606076928000000, 265058191985900625, 141409376995328000000, 90403125002859606705625, 68229510086445571768320000, 60026603304487418050791015625, 60893916244529680380723200000000 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 8 22:02 EDT 2024. Contains 373227 sequences. (Running on oeis4.)