OFFSET
1,2
COMMENTS
a(n) <= A000583(n), which is the number of 2 X 2 matrices with entries in {1, ..., n}.
a(n) >= A005917(n), which is the number of 2 X 2 matrices with entries in {1, ..., n} that contain the element 1. All such matrices are not decomposable as a product of 2 X 2 positive integer matrices.
This definition is a generalization of the notion of prime numbers to the family of 2 X 2 positive integer matrices. Since the matrices do not contain 0, max(A*B) > max(A) and max(A*B) > max(B). Thus, for every matrix there is a finite number of possible decompositions to check.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..60
Michael S. Branicky, Python program
Aldo González Lorenzo, Scilab function for computing this sequence
P. F. Rivett and N. I. P. Mackinnon, Prime Matrices, The Mathematical Gazette, Vol. 70, No. 454 (Dec., 1986), pp. 257-259.
EXAMPLE
The matrix [2,2;3,3] is decomposable: [2,2;3,3] = [1,1;1,2] * [1,1;1,1]. However, the matrix [2,3;3;2] is not decomposable.
PROG
(Python) # See Branicky link.
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Aldo González Lorenzo, Jul 29 2015
STATUS
approved