A361992 (1,2)-block array, B(1,2), of the Wythoff array (A035513), read by descending antidiagonals.
3, 8, 11, 21, 29, 16, 55, 76, 42, 24, 144, 199, 110, 63, 32, 377, 521, 288, 165, 84, 37, 987, 1364, 754, 432, 220, 97, 45, 2584, 3571, 1974, 1131, 576, 254, 118, 50, 6765, 9349, 5168, 2961, 1508, 665, 309, 131, 58, 17711, 24476, 13530, 7752, 3948, 1741, 809
Offset: 1
Examples
Corner of B(1,2): 3 8 21 55 144 377 987 ... 11 29 76 199 521 1364 3571 ... 16 42 110 288 754 1974 5168 ... 24 63 165 432 1131 2961 7752 ... 32 84 220 576 1508 3948 10336 ... ... (row 1 of A035513) = (1,2,3,5,8,13,21,34,...), so (row 1 of B(1,2)) = (3,8,21,55,...); (row 2 of A000027) = (4,7,11,18,29,47,76,123,...), so (row 2 of B(1,2)) = (11,29,76,199,...).
Crossrefs
Programs
-
Mathematica
f[n_] := Fibonacci[n]; r = GoldenRatio; zz = 10; z = 13; w[n_, k_] := f[k + 1] Floor[n*r] + (n - 1) f[k] t[h_, k_] := w[h, 2 k - 1] + w[h, 2 k]; Table[t[n - k + 1, k], {n, 12}, {k, n, 1, -1}] // Flatten (* A361992 sequence *) TableForm[Table[t[h, k], {h, 1, zz}, {k, 1, z}]] (* A361992 array *)
Comments