A330656 Square array read by antidiagonals downwards (see Comments lines for definition).
0, 1, -1, 3, 2, -3, 5, -2, 4, -7, 11, -6, -4, 8, -15, 17, 6, -12, -8, 16, -31, 26, -9, 15, -27, -19, 35, -66, 7, 19, -28, 43, -70, -51, -86, -20, 12, -5, 24, -52, -95, -25, -26, -60, -40, 21, 9, -14, -38, 14, -109, -84, 58, -118, -78, 10, -11, 20, 34, -72, 86, -195, -111, -169, 51, -129, 23, 13, -24, -44, 78, -150
Offset: 1
Examples
The upper-left corner of the array starts like this: 0 1 3 5 11 17 26 7 12 21 10 23... -1 2 -2 -6 6 -9 19 -5 9 -11 13 -16... -3 4 -4 -12 15 -28 24 -14 20 -24 29 -34... -7 8 -8 -27 43 -52 -38 34 -44 53 -63 82... -15 16 -19 -70 -95 14 -72 78 -97 116 -145 -192... -31 35 -51 -25 -109 86 -150 -175 -213 261 -47 -171... -66 -86 -26 -84 -195 -236 25 38 -474 -308 -124 117... -20 -60 58 -111 -41 -261 -13 -512 -166 -184 -241 -339... -40 -118 -169 70 -220 -248 -499 -346 -18 -57 98 -361... -78 51 -239 290 28 -251 -153 -328 -39 -155 -459 475... -129 -290 -529 -262 -279 -98 175 -289 -116 -304 -934 -160... -161 239 -267 -17 -181 -273 -464 -173 188 -630 -774 -364... ... The first row starts with 0. We prolong it with the smallest unused positive integer so far. This is 1: 0 1 We compute immediately 0 - 1 = -1 to fill the first antidiagonal and get: 0 1 -1 We cannot prolong the first row with 2 as this 2 would produce a contradiction for c: 0 1 2 -1 c Indeed, either 1 - 2 or 2 - 1 would lead to c = -1 or +1, both results being already in the array. We then try to prolong the first row with the next smallest available integer not yet in the array, which is 3: 0 1 3 -1 c To compute c, we try first "smallest term minus biggest one": 0 1 3 -1 -2 d But the result -2 result will lead to a term d being either -1 or +1, which are both already in the array; we then try, at the upper level, "biggest term minus smallest term" (this is 3 minus 1 = 2), which produces now a new term c = 3 - 1 and a new hope to compute a term d fitting the array: 0 1 3 -1 2 d Indeed, the operation "smallest term minus biggest one" works now to find d as -1 minus 2 is -3, a term not yet in the array: 0 1 3 -1 2 -3 As the last antidiagonal is completed, we try to complete a new one with k, l, m and n, with k, l, m, n not being already in the array: 0 1 3 k -1 +2 l -3 m n etc.
References
- Eric Angelini on Math-Fun mailing list, March 31 2020.
Links
- Carole Dubois, Table of n, a(n) for n = 1..5151
Comments