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.

A187011 Determinant of the n X n matrix with (i,j)-entry equal to |p_i-p_j|, where p_k denotes the k-th prime.

Original entry on oeis.org

0, -1, 12, -80, 1152, -5632, 61440, -278528, 2752512, -42467328, 182452224, -2642411520, 23555211264, -99052683264, 869730877440, -11828339933184, 158638912045056, -656820758642688, 8683393080360960, -73742045851680768
Offset: 1

Views

Author

Zhi-Wei Sun, Aug 30 2013

Keywords

Comments

Conjecture: (-1)^(n-1)*a(n) > 0 for all n > 1, and |a(n)|^{1/n} tends to the infinity.

Examples

			a(1) = 0 since p_1 - p_1 = 2 - 2 = 0.
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=Det[Table[Abs[Prime[i]-Prime[j]],{i,1,n},{j,1,n}]]
    Table[a[n],{n,1,20}]