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!)
A102037 Triangle of BitAnd(BitNot(n), k). 5
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 2, 2, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 0, 0, 0, 2, 2, 4, 4, 6, 6, 0, 0, 0, 1, 0, 1, 4, 5, 4, 5, 0, 1, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, 0, 0, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,13
COMMENTS
As a logical operation on two variables this is also called the 'converse nonimplication'. - Peter Luschny, Sep 25 2021
LINKS
Eric Weisstein's World of Mathematics, Sierpinski Sieve
EXAMPLE
Table starts:
[0] 0;
[1] 0, 0;
[2] 0, 1, 0;
[3] 0, 0, 0, 0;
[4] 0, 1, 2, 3, 0;
[5] 0, 0, 2, 2, 0, 0;
[6] 0, 1, 0, 1, 0, 1, 0;
[7] 0, 0, 0, 0, 0, 0, 0, 0;
[8] 0, 1, 2, 3, 4, 5, 6, 7, 0;
[9] 0, 0, 2, 2, 4, 4, 6, 6, 0, 0.
MAPLE
with(Bits): cnimp := (n, k) -> And(Not(n), k):
seq(print(seq(cnimp(n, k), k=0..n)), n = 0..12); # Peter Luschny, Sep 25 2021
PROG
(Julia)
using IntegerSequences
A102037Row(n) = [Bits("CNIMP", n, k) for k in 0:n]
for n in 0:20 println(A102037Row(n)) end # Peter Luschny, Sep 25 2021
CROSSREFS
Cf. A350094 (row sums), A268040 (array).
Other triangles: A080099 (AND), A080098 (OR), A051933 (XOR), A265705 (IMPL).
Sequence in context: A025109 A348710 A048735 * A286530 A152857 A097946
KEYWORD
nonn,easy,tabl
AUTHOR
Eric W. Weisstein, Dec 25 2004
STATUS
approved

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 June 27 03:21 EDT 2024. Contains 373723 sequences. (Running on oeis4.)