login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; table; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 29 06:50 EDT 2024. Contains 372097 sequences. (Running on oeis4.)