login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A204240
Determinant of the n-th principal submatrix of A204158.
2
1, -14, 115, -800, 5125, -31250, 184375, -1062500, 6015625, -33593750, 185546875, -1015625000, 5517578125, -29785156250, 159912109375, -854492187500, 4547119140625, -24108886718750, 127410888671875, -671386718750000
OFFSET
1,2
LINKS
FORMULA
Conjectures from Colin Barker, Feb 21 2015: (Start)
a(n) = -10*a(n-1)-25*a(n-2).
G.f. -x*(4*x-1) / (5*x+1)^2.
(End)
MATHEMATICA
f[i_, j_] := Max[3 i - 2 j, 3 j - 2 i];
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[8]] (* 8x8 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 12}, {i, 1, n}]] (* A204158 *)
Table[Det[m[n]], {n, 1, 22}] (* A204240 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 14}] (* A204241 *)
PROG
(PARI) vector(20, n, matdet(matrix(n, n, i, j, max(3*i-2*j, 3*j-2*i)))) \\ Colin Barker, Feb 21 2015
CROSSREFS
Sequence in context: A200037 A026959 A026989 * A178258 A121783 A155647
KEYWORD
sign
AUTHOR
Clark Kimberling, Jan 13 2012
STATUS
approved