Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #11 Aug 31 2013 02:09:41
%S 0,-1,12,-80,1152,-5632,61440,-278528,2752512,-42467328,182452224,
%T -2642411520,23555211264,-99052683264,869730877440,-11828339933184,
%U 158638912045056,-656820758642688,8683393080360960,-73742045851680768
%N 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.
%C Conjecture: (-1)^(n-1)*a(n) > 0 for all n > 1, and |a(n)|^{1/n} tends to the infinity.
%H Zhi-Wei Sun, <a href="/A187011/b187011.txt">Table of n, a(n) for n = 1..150</a>
%e a(1) = 0 since p_1 - p_1 = 2 - 2 = 0.
%t a[n_]:=Det[Table[Abs[Prime[i]-Prime[j]],{i,1,n},{j,1,n}]]
%t Table[a[n],{n,1,20}]
%Y Cf. A000040, A185645.
%K sign
%O 1,3
%A _Zhi-Wei Sun_, Aug 30 2013