A356875 Square array, n >= 0, k >= 0, read by descending antidiagonals. A(n,k) = A022341(n)*2^k.
1, 2, 5, 4, 10, 9, 8, 20, 18, 17, 16, 40, 36, 34, 21, 32, 80, 72, 68, 42, 33, 64, 160, 144, 136, 84, 66, 37, 128, 320, 288, 272, 168, 132, 74, 41, 256, 640, 576, 544, 336, 264, 148, 82, 65, 512, 1280, 1152, 1088, 672, 528, 296, 164, 130, 69, 1024, 2560, 2304, 2176, 1344, 1056, 592, 328, 260, 138, 73
Offset: 0
Examples
Square array A(n,k) begins: 1 2 4 8 16 32 64 128 ... 5 10 20 40 80 160 320 640 ... 9 18 36 72 144 288 576 1152 ... 17 34 68 136 272 544 1088 2176 ... 21 42 84 168 336 672 1344 2688 ... 33 66 132 264 528 1056 2112 4224 ... 37 74 148 296 592 1184 2368 4736 ... 41 82 164 328 656 1312 2624 5248 ... 65 130 260 520 1040 2080 4160 8320 ... 69 138 276 552 1104 2208 4416 8832 ... ... The defining characteristic of a Fibbinary number is that its binary representation does not have a 1 followed by another 1. Shown in binary the array begins: 1 10 100 1000 ... 101 1010 10100 101000 ... 1001 10010 100100 1001000 ... 10001 100010 1000100 10001000 ... 10101 101010 1010100 10101000 ... ...
Comments