OFFSET
0,4
COMMENTS
Nonlinearity of a Boolean function is its minimum Hamming distance to the elements of the set of affine Boolean functions.
In this sequence, n represents the truth table of Boolean functions.
There are 2^2^3 = 256 terms in this list, i.e., the number of Boolean functions of 3-variables.
Also the list of first 2^2^3 terms of r-th order nonlinearity values of Boolean functions of (r+2)-variables in lexicographic order of their truth tables.
LINKS
Erdener Uyan, Table of n, a(n) for n = 0..255 (complete sequence)
EXAMPLE
n in GF(2^3) a(1)=a((00000001)_2)=1;a(5)=a((00000101)_2)=2;a(15)=a((00001111)_2)=0;
This can be written as a triangle, though having few outliers:
0,
1,
1,2,
1,2,2,1,
1,2,2,1,2,1,1,0,
1,2,2,1,2,1,1,2,2,1,1,2,1,2,2,1,
1,2,2,1,2,1,1,2,2,1,1,2,1,2,2,1,2,1,1,0,1,2,2,1,1,2,2,1,0,1,1,2,...
PROG
(R w/ boolfun package)
for(n in 0:2^(2^3)-1){
f<- BooleanFunction(toBin(n, 2^3))
a[n]<-nl(f)
}
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Erdener Uyan, Feb 19 2012
STATUS
approved