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.

A071547 Determinant of the n X n matrix whose element (i,j) equals f(|i-j|) where f(n) is the sum of middle divisors (A071090).

Original entry on oeis.org

0, -1, 2, 0, -2, 3, 8, -259, -9006, 37575, 1988916, 41615129, -444915500, 4752358604, -50506657344, 532544416084, -4450492081868, -10234691885873, 241215169689690, 21696729746925312, 123619114295636184, 174381272189413488, -43909101832286346168, -439142701170244441024
Offset: 1

Views

Author

Robert G. Wilson v, May 30 2002

Keywords

Crossrefs

Cf. A071090.

Programs

  • Mathematica
    f[n_] := If[n > 0, Plus @@ Select[Divisors[n], Sqrt[n/2] <= # < Sqrt[n*2] &], 0]; Table[ Det[ Table[ f[ Abs[i - j]], {i, 1, n}, {j, 1, n}]], {n, 1, 25}]