cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A367679 a(n) = Product_{i=1..n, j=1..n} (i^4 - i^3*j + i^2*j^2 - i*j^3 + j^4).

Original entry on oeis.org

1, 1936, 1765124816400, 19271059559619728900751360000, 25048411180596698786915756280274804766474649600000000, 23045227505577134384745253646275782332295626096040088365089618773238077194240000000000
Offset: 1

Views

Author

Vaclav Kotesovec, Nov 26 2023

Keywords

Crossrefs

Programs

  • 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}]
  • 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

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...