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.

A059383 Product J_4(i), i=1..n.

Original entry on oeis.org

1, 15, 1200, 288000, 179712000, 215654400000, 517570560000000, 1987470950400000000, 12878811758592000000000, 120545678060421120000000000, 1764788726804565196800000000000, 33883943554647651778560000000000000, 967725427920736934795673600000000000000
Offset: 1

Views

Author

N. J. A. Sloane, Jan 28 2001

Keywords

Comments

a(n) is also the determinant of the symmetric n X n matrix M defined by M(i,j) = gcd(i,j)^4 for 1 <= i,j <= n. - Avi Peretz (njk(AT)netvision.net.il), Mar 22 2001

References

  • L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 203, #17.

Crossrefs

Programs

  • Mathematica
    JordanTotient[n_, k_:1]:=DivisorSum[n, #^k*MoebiusMu[n/#]&]/; (n>0)&&IntegerQ[n]; A059383[n_]:=Times@@(JordanTotient[#, 4]&/@Range[n]); (* Enrique Pérez Herrero, Aug 12 2011 *)