login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A193791
Mirror of the triangle A193790.
2
1, 1, 1, 3, 2, 1, 9, 4, 4, 1, 27, 8, 12, 6, 1, 81, 16, 32, 24, 8, 1, 243, 32, 80, 80, 40, 10, 1, 729, 64, 192, 240, 160, 60, 12, 1, 2187, 128, 448, 672, 560, 280, 84, 14, 1, 6561, 256, 1024, 1792, 1792, 1120, 448, 112, 16, 1, 19683, 512, 2304, 4608, 5376, 4032
OFFSET
0,4
COMMENTS
A193791 is obtained by reversing the rows of the triangle A193790.
FORMULA
Write w(n,k) for the triangle at A193790. The triangle at A193791 is then given by w(n,n-k).
EXAMPLE
First six rows:
1
1....1
3....2....1
9....4....4....1
27..8....12....6...1
81...16...32....24...8....1
MATHEMATICA
z = 10; a = 2; b = 1;
p[n_, x_] := (a*x + b)^n
q[n_, x_] := 1 + x^n ; q[n_, 0] := q[n, x] /. x -> 0;
t[n_, k_] := Coefficient[p[n, x], x^k]; t[n_, 0] := p[n, x] /. x -> 0;
w[n_, x_] := Sum[t[n, k]*q[n + 1 - k, x], {k, 0, n}]; w[-1, x_] := 1
g[n_] := CoefficientList[w[n, x], {x}]
TableForm[Table[Reverse[g[n]], {n, -1, z}]]
Flatten[Table[Reverse[g[n]], {n, -1, z}]] (* A193790 *)
TableForm[Table[g[n], {n, -1, z}]]
Flatten[Table[g[n], {n, -1, z}]] (* A193791 *)
CROSSREFS
Cf. A193790.
Sequence in context: A079749 A156647 A183154 * A160760 A152860 A002350
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 05 2011
STATUS
approved