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!)
A367668 a(n) = Product_{i=1..n, j=1..n} (i^4 - i^2*j^2 + j^4). 6
1, 2704, 4343072672016, 104066856161782811235776987136, 368057974579278182597141600363036562863943425064960000, 1139317987311004502889916180807286481186277543437822119282797720728081762451885916160000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ c * (2 + sqrt(3))^(sqrt(3)*n*(n+1)) * n^(4*n^2 - 1) / exp(6*n^2 - Pi*n*(n+1)/2), where c = 0.219927317102868518491484945565471919409874745762951216457178735860943437...
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 A367668(n): return (prod((k:=j**2)**2+(m:=i**2)*(m-k) for i in range(1, n) for j in range(i+1, n+1))*factorial(n)**2)**2 # Chai Wah Wu, Nov 26 2023
CROSSREFS
Sequence in context: A270542 A250615 A193172 * A281838 A205605 A205436
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 26 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 2 16:09 EDT 2024. Contains 372197 sequences. (Running on oeis4.)