OFFSET
1,1
COMMENTS
The Wythoff array, A134859, consists of columns AA, BA, ABA, BBA, ABBA, BBBA, ... The Wythoff-B array consists of columns AAB, BAB, ABAB, BBAB, ABBAB, BBBAB, ... , formed by suffixing B to the column designations for A134859. Column k shows the numbers whose Zeckendorf representation has least terms F(k+1) and F(k+2), where F = A000045, the Fibonacci numbers. The rows are interspersed, in the sense that the order array (A340245) of the Wythoff-B array is an interspersion.
FORMULA
EXAMPLE
Corner:
4 7 11 18 29 47 76 123 199
12 20 32 52 84 136 220 356 576
17 28 45 73 118 191 309 500 809
25 41 66 107 173 280 453 733 1186
33 54 87 141 228 369 597 966 1563
38 62 100 162 262 424 686 1110 1796
46 75 121 196 317 513 830 1343 2173
51 83 134 217 351 568 919 1487 2406
MATHEMATICA
r = GoldenRatio; f[n_] := Fibonacci[n];
a[n_] := Floor[r*n]; b[n_] := Floor[r^2*n];
c[n_] := a[a[b[n]]]; d[n_] := b[a[b[n]]];
w[n_, k_] := f[k - 2] c[n] + f[k - 1] d[n];
Grid[Table[w[n, k], {n, 1, 15}, {k, 1, 15}]] (* A340244 array *)
Table[w[n - k + 1, k], {n, 15}, {k, n, 1, -1}] // Flatten (* A340244 sequence *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Jan 02 2021
STATUS
approved