A185740 Weight array of A185738, by antidiagonals.
1, 1, 2, 1, 0, 4, 1, 0, 0, 8, 1, 0, 0, 0, 16, 1, 0, 0, 0, 0, 32, 1, 0, 0, 0, 0, 0, 64, 1, 0, 0, 0, 0, 0, 0, 128, 1, 0, 0, 0, 0, 0, 0, 0, 256, 1, 0, 0, 0, 0, 0, 0, 0, 0, 512, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1024, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2048, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4096, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8192
Offset: 1
Examples
Northwest corner: 1...1...1...1...1...1...1 2...0...0...0...0...0...0 4...0...0...0...0...0...0 8...0...0...0...0...0...0
Links
- G. C. Greubel, Table of n, a(n) for the first 50 rows, flattened
Crossrefs
Cf. A185738.
Programs
-
Mathematica
(See A185738.) f[n_, k_] := 0; f[n_, 1] := 2^(n - 1); f[1, k_] := 1; TableForm[Table[f[n, k], {n, 1, 10}, {k, 1, 10}]] (*Array A185740*) Table[f[n - k + 1, k], {n, 50}, {k, n, 1, -1}] // Flatten (* G. C. Greubel, Jul 12 2017 *)
Formula
Column 1: 2^n. Row 1: 1,1,1,1,1,1,1,1,1,1,1,... All other terms: 0.
Comments