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!)
A324425 a(n) = Product_{i=1..n, j=1..n, k=1..n} (i^2 + j^2 + k^2). 9
1, 3, 5668704, 550388591715704109656479285248, 152455602303300418998634460043817052571893573096619261814850281699755319515987050496 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
(a(n)^(1/n^3))/n^2 tends to 0.828859579669279... = A306617.
LINKS
MAPLE
a:= n-> mul(mul(mul(i^2+j^2+k^2, i=1..n), j=1..n), k=1..n):
seq(a(n), n=0..5); # Alois P. Heinz, Jun 24 2023
MATHEMATICA
Table[Product[i^2+j^2+k^2, {i, 1, n}, {j, 1, n}, {k, 1, n}], {n, 1, 6}]
Clear[a]; a[n_] := a[n] = If[n == 1, 3, a[n-1] * Product[k^2 + j^2 + n^2, {j, 1, n}, {k, 1, n}]^3 * (3*n^2) / (Product[k^2 + 2*n^2, {k, 1, n}]^3)]; Table[a[n], {n, 1, 6}] (* Vaclav Kotesovec, Mar 27 2019 *)
CROSSREFS
Sequence in context: A368721 A229725 A244113 * A117721 A229092 A058469
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Feb 27 2019
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Jun 24 2023
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 May 19 09:42 EDT 2024. Contains 372683 sequences. (Running on oeis4.)