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!)
A067417 Triangle with columns built from certain power sequences. 10
1, 3, 1, 9, 4, 1, 27, 24, 5, 1, 81, 144, 45, 6, 1, 243, 864, 405, 72, 7, 1, 729, 5184, 3645, 864, 105, 8, 1, 2187, 31104, 32805, 10368, 1575, 144, 9, 1, 6561, 186624, 295245, 124416, 23625, 2592, 189, 10, 1, 19683, 1119744, 2657205, 1492992, 354375, 46656, 3969, 240, 11, 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+3)*(3*(m+1))^(n-m-1) if n > m >= 0.
G.f. for column m: (x^m)*(1-2*m*x)/(1-3*(m+1)*x).
EXAMPLE
Triangle starts:
1;
3, 1;
9, 4, 1;
27, 24, 5, 1;
...
MATHEMATICA
A[n_, m_]:=If[n==m, 1, (m+3)(3(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, A067410.
Sequence in context: A140071 A285280 A285266 * A187887 A016577 A308704
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)