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”).

A067410
Triangle with columns built from certain power sequences.
10
1, 2, 1, 4, 3, 1, 8, 12, 4, 1, 16, 48, 24, 5, 1, 32, 192, 144, 40, 6, 1, 64, 768, 864, 320, 60, 7, 1, 128, 3072, 5184, 2560, 600, 84, 8, 1, 256, 12288, 31104, 20480, 6000, 1008, 112, 9, 1, 512, 49152, 186624, 163840, 60000, 12096, 1568, 144, 10, 1
OFFSET
0,2
LINKS
Indranil Ghosh, Rows 0..125, flattened
FORMULA
a(n, m) = 1 if n = m; a(n, m) = (m+2)*(2*(m+1))^(n-m-1) if n > m >= 0.
G.f. for column m: (x^m)*(1-m*x)/(1-2*(m+1)*x).
EXAMPLE
Triangle starts:
1;
2, 1;
4, 3, 1;
8, 12, 4, 1;
...
MATHEMATICA
A[n_, m_]:=If[n==m, 1, (m+2)(2(m+1))^(n-m-1)]; Flatten[Table[A[n, m], {n, 0, 9}, {m, 0, n}]] (* Stefano Spezia, Sep 30 2022 *)
CROSSREFS
Cf. A009998 (triangle built from powers of (m+1)), A067402.
Sequence in context: A051129 A319075 A264871 * A213947 A348482 A188403
KEYWORD
nonn,easy,tabl
AUTHOR
Wolfdieter Lang, Jan 25 2002
STATUS
approved