OFFSET
0,6
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..10384 (rows 0..2200 of the triangle, flattened).
EXAMPLE
Triangle begins:
[0] 1;
[1] 0;
[2] 1;
[3] 0;
[4] 1, 2;
[5] 2;
[6] 1;
[7] 0;
[8] 1, 2, 3;
...
Row n = 50 is 1, 3, 4:
binary expansion of 50: 1 1 0 0 1 0
positions of zeros: - - 4 3 - 1
MATHEMATICA
Array[Replace[Flatten[Position[Reverse[IntegerDigits[#, 2]], 0]], {} -> {0}] &, 100, 0]
CROSSREFS
KEYWORD
nonn,base,tabf,easy
AUTHOR
Paolo Xausa, Mar 18 2024
STATUS
approved