OFFSET
0,6
COMMENTS
This is one of eight bitwise truth tables subject to the condition that (0, 0) implies 0.
# -------|---------|---------|---------|---------
# (0, 0) | 0 | 0 | 0 | 0
# (0, 1) | 0 | 0 | 0 | 0
# (1, 0) | 0 | 0 | 1 | 1
# (1, 1) | 0 | 1 | 0 | 1
#
# -------|---------|---------|---------|---------
# (0, 0) | 0 | 0 | 0 | 0
# (0, 1) | 1 | 1 | 1 | 1
# (1, 0) | 0 | 0 | 1 | 1
# (1, 1) | 0 | 1 | 0 | 1
Transpose of the array in A099026. - Michel Marcus, Jan 25 2016
LINKS
Peter Kagey, Table of n, a(n) for n = 0..8191
EXAMPLE
The array begins:
0, 1, 2, 3, 4, 5, ...
0, 0, 2, 2, 4, 4, ...
0, 1, 0, 1, 4, 5, ...
0, 0, 0, 0, 4, 4, ...
0, 1, 2, 3, 0, 1, ...
0, 0, 2, 2, 0, 0, ...
...
PROG
(PARI) T(x, y)=bitnegimply(y, x) \\ Michel Marcus, Jan 25 2016
CROSSREFS
AUTHOR
Peter Kagey, Jan 24 2016
STATUS
approved