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!)
A367679 a(n) = Product_{i=1..n, j=1..n} (i^4 - i^3*j + i^2*j^2 - i*j^3 + j^4). 2
1, 1936, 1765124816400, 19271059559619728900751360000, 25048411180596698786915756280274804766474649600000000, 23045227505577134384745253646275782332295626096040088365089618773238077194240000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A324438(n) / A079478(n).
a(n) ~ c * n^(4*n^2 - 5/6) * phi^(sqrt(5)*n*(n+1)) / exp(6*n^2 - sqrt(phi)*Pi*n*(n+1)/5^(1/4)), where phi = A001622 is the golden ratio and c = 0.2505211390193028244009922677012518708897316924498037078191143761182342931773594...
MATHEMATICA
Table[Product[i^4 - i^3*j + i^2*j^2 - i*j^3 + j^4, {i, 1, n}, {j, 1, n}], {n, 1, 6}]
PROG
(Python)
from math import prod, factorial
def A367679(n): return (prod(i*(i*(i*(i-j)+j**2)-j**3)+j**4 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: A264109 A188369 A185570 * A031766 A031542 A214478
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 July 29 22:36 EDT 2024. Contains 374734 sequences. (Running on oeis4.)