A214987 Power round array for the golden ratio, by antidiagonals.
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 5, 8, 4, 1, 1, 8, 21, 17, 7, 1, 1, 13, 55, 72, 48, 11, 1, 1, 21, 144, 305, 329, 122, 18, 1, 1, 34, 377, 1292, 2255, 1353, 323, 29, 1, 1, 55, 987, 5473, 15456, 15005, 5796, 842, 47, 1, 1, 89, 2584, 23184, 105937, 166408, 104005
Offset: 1
Examples
1...1...1....1.....1......1 1...2...3....5.....8......13 1...3...8....21....5......144 1...4...17...72....305....1292 1...7...48...329...2255...15456
Links
- Clark Kimberling, Antidiagonals n = 1..35, flattened
Programs
-
Mathematica
r = GoldenRatio; s[x_, 0] := 1; s[x_, n_] := Round[x*s[x, n - 1]]; t = TableForm[Table[s[r^m, n], {m, 0, 10}, {n, 0, 10}] ] u = Flatten[Table[s[r^m, n - m], {n, 0, 10}, {m, 0, n}]]
Comments