login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A210370 Number of 2 X 2 matrices with all elements in {0,1,...,n} and odd determinant. 6

%I #20 Apr 29 2020 11:05:03

%S 0,6,16,96,168,486,720,1536,2080,3750,4800,7776,9576,14406,17248,

%T 24576,28800,39366,45360,60000,68200,87846,98736,124416,138528,171366,

%U 189280,230496,252840,303750,331200,393216,426496,501126,541008,629856,677160,781926,837520

%N Number of 2 X 2 matrices with all elements in {0,1,...,n} and odd determinant.

%C a(n) is also the number of 2 X 2 matrices with all elements in {0,1,...n} and odd permanent.

%H Andrew Howroyd, <a href="/A210370/b210370.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n) + A210369(n) = n^4.

%F From _Colin Barker_, Nov 28 2014: (Start)

%F a(n) = (3 - 3*(-1)^n - 12*(-1+(-1)^n)*n + (22-14*(-1)^n)*n^2 - 4*(-5+(-1)^n)*n^3 + 6*n^4)/16.

%F G.f.: -2*x*(3*x^5+17*x^4+16*x^3+28*x^2+5*x+3) / ((x-1)^5*(x+1)^4).

%F (End)

%F a(n) = 2*((n+1)^2 - ceiling(n/2)^2)*ceiling(n/2)^2. - _Andrew Howroyd_, Apr 28 2020

%t a = 0; b = n; z1 = 28;

%t t[n_] := t[n] = Flatten[Table[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 u[n_] := Sum[c[n, 2 k], {k, -2*n^2, 2*n^2}]

%t v[n_] := Sum[c[n, 2 k - 1], {k, -2*n^2, 2*n^2}]

%t Table[u[n], {n, 0, z1}] (* A210369 *)

%t Table[v[n], {n, 0, z1}](* A210370 *)

%o (PARI) a(n)={2*((n+1)^2-ceil(n/2)^2)*ceil(n/2)^2} \\ _Andrew Howroyd_, Apr 28 2020

%Y Cf. A210000, A210369.

%K nonn

%O 0,2

%A _Clark Kimberling_, Mar 20 2012

%E Terms a(29) and beyond from _Andrew Howroyd_, Apr 28 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 03:28 EDT 2024. Contains 371696 sequences. (Running on oeis4.)