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!)
A367542 a(n) = Product_{i=1..n, j=1..n} (i^2 + i*j + j^2). 13

%I #11 Nov 22 2023 11:16:17

%S 3,1764,2905736652,66016970246853190656,

%T 64657853715047202043531429875379200,

%U 6627957368676918780503749855130249245999452089509478400

%N a(n) = Product_{i=1..n, j=1..n} (i^2 + i*j + j^2).

%F a(n) ~ c * 3^(3*n*(n+1)/2) * n^(2*n^2 - 2/3) / exp(3*n^2 - Pi*n*(n+1) / (2*sqrt(3))), where c = 3^(5/12) * exp(Pi/(12*sqrt(3))) * Gamma(1/3) / (2^(4/3) * Pi^(4/3)) = 0.42478290981890921418850643030484274341562970375995548434917...

%t Table[Product[Product[(i^2 + i*j + j^2), {i, 1, n}], {j, 1, n}], {n, 1, 10}]

%o (Python)

%o from math import prod, factorial

%o def A367542(n): return (prod(i*(i+j)+j**2 for i in range(1,n) for j in range(i+1,n+1))*factorial(n))**2*3**n # _Chai Wah Wu_, Nov 22 2023

%Y Cf. A203012, A324403, A367543.

%K nonn

%O 1,1

%A _Vaclav Kotesovec_, Nov 22 2023

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 17 03:50 EDT 2024. Contains 373432 sequences. (Running on oeis4.)