Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #7 Dec 08 2016 04:27:39
%S 1,6,19,29,41,51,65,75,89,101,115,125,143,153,167,181,197,207,225,235,
%T 253,267,281,291,313,325,339,353,371,381,403,413,431,445,459,473,497,
%U 507,521,535,557,567,589,599,617,635
%N Number of 2 X 2 matrices with all elements in {0,1,...,n} and permanent = trace.
%C See A210000 for a guide to related sequences.
%H Chai Wah Wu, <a href="/A210288/b210288.txt">Table of n, a(n) for n = 0..10000</a>
%t a = 0; b = n; z1 = 45;
%t t[n_] := t[n] = Flatten[Table[w + z - w*z - x*y, {w, a, b}, {x, a, b}, {y, a, b}, {z, a, b}]]
%t c[n_, k_] := c[n, k] = Count[t[n], k]
%t Table[c[n, 0], {n, 0, z1}] (* A210288 *)
%Y Cf. A210000.
%K nonn
%O 0,2
%A _Clark Kimberling_, Mar 19 2012