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!)
A223541 Array T(m,n) = nim-product(2^m,2^n) (m>=0, n>=0) read by antidiagonals. 11

%I #36 Jun 08 2020 22:40:50

%S 1,2,2,4,3,4,8,8,8,8,16,12,6,12,16,32,32,11,11,32,32,64,48,64,13,64,

%T 48,64,128,128,128,128,128,128,128,128,256,192,96,192,24,192,96,192,

%U 256,512,512,176,176,44,44,176,176,512,512,1024,768

%N Array T(m,n) = nim-product(2^m,2^n) (m>=0, n>=0) read by antidiagonals.

%C Nimber multiplication is commutative, so this array is symmetric, and can be represented in a more compact way by the rows of the lower triangle (A223540).

%C The diagonal is A006017 (nim-squares of powers of 2).

%C The elements of this array are listed in A223543. In the key-matrix A223542 the entries of this array (which become very large) are replaced by the corresponding index numbers of A223543. (Surprisingly, the key-matrix seems to be interesting on its own.)

%C The number of different entries per antidiagonal is probably A002487. That would mean that there are exactly A002487(n+1) numbers that can be expressed as a nim-product(2^a,2^b) with a+b=n. - _Tilman Piesk_, Mar 27 2013

%D J. H. Conway, "Integral lexicographic codes." Discrete Mathematics 83.2-3 (1990): 219-235. See Table 4.

%H Tilman Piesk, <a href="/A223541/b223541.txt">First 128 rows of the matrix, flattened</a>

%H Tilman Piesk, <a href="http://commons.wikimedia.org/wiki/Category:Nim-products_of_2-powers;_dual">Elements of dual matrix</a> (256 SVGs)

%H Tilman Piesk, <a href="http://en.wikiversity.org/wiki/Walsh_permutation;_nimber_multiplication">Walsh permutation; nimber multiplication</a> (Wikiversity)

%H Tilman Piesk, Class <a href="http://pastebin.com/K02wGsae">bin</a> and function <a href="http://pastebin.com/g7Bi2ayA">nimprod</a> (MATLAB code)

%F T(m,n) = A051775(A000079(m),A000079(n)).

%F T(m,n) = A223543(A223542(m,n)).

%e T(1,7) = T(3,5) = 192, the result of the nim-multiplications 2^1*2^7 and 2^3*2^5.

%e The array begins:

%e 1,2,4,8,16,32,64,128,256,...

%e 2,3,8,12,32,48,128,192,512,...

%e 4,8,6,11,64,128,96,176,1024,...

%e 8,12,11,13,128,192,176,208,2048,...

%e 16,32,64,128,24,44,75,141,4096,...

%e 32,48,128,192,44,52,141,198,8192,...

%e 64,128,96,176,75,141,103,185,16384,...

%e 128,192,176,208,141,198,185,222,32768,...

%e 256,512,1024,2048,4096,8192,16384,32768,384,...

%e ...

%o (MATLAB, see code linked above)

%o A = bin([256 256],'pre') ;

%o for m=1:256

%o for n=1:m

%o a = nimprod( bin(m-1) , bin(n-1) ) ;

%o A(m,n) = a ;

%o A(n,m) = a ;

%o end

%o end

%Y Cf. A051775, A223540, A006017 (main diagonal), A223543, A223542, A000079, A002487.

%Y For rows 1,2,3,4, see A134683, A335159, A335160, A335161.

%K nonn,tabl

%O 0,2

%A _Tilman Piesk_, Mar 21 2013

%E Edited by _N. J. A. Sloane_, Jun 08 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 August 9 23:12 EDT 2024. Contains 375044 sequences. (Running on oeis4.)