Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A367550 a(n) = Product_{i=1..n, j=1..n} (i^4 + i^2*j^2 + j^4). 5
3, 63504, 2260442279270448, 3379470372507391964272022793486336, 2097229364987262298214192667129919538956418868293588090880000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A367542(n) * A367543(n).
a(n) ~ Gamma(1/3)^3 * 3^(3*n*(n+1)/2 + 7/12) * n^(4*n^2 - 1) / (8*Pi^3 * exp(6*n^2 - (6*n*(n+1) + 1)*Pi/(4*sqrt(3)))).
MATHEMATICA
Table[Product[Product[i^4 + i^2*j^2 + j^4, {i, 1, n}], {j, 1, n}], {n, 1, 10}]
PROG
(Python)
from math import prod, factorial
def A367550(n): return (prod((i2:=i**2)*(i2+(j2:=j**2))+j2**2 for i in range(1, n) for j in range(i+1, n+1))*factorial(n)**2)**2*3**n # Chai Wah Wu, Nov 22 2023
CROSSREFS
Sequence in context: A171365 A115976 A340182 * A178966 A368720 A175551
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 22 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 August 18 13:06 EDT 2024. Contains 375269 sequences. (Running on oeis4.)