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!)
A154694 Triangle T(n,m) = ((3/2)^m*2^n+(2/3)^m*3^n)*A008292(n+1,m+1) read by rows. 4
2, 5, 5, 13, 48, 13, 35, 330, 330, 35, 97, 2028, 4752, 2028, 97, 275, 11970, 54360, 54360, 11970, 275, 793, 69840, 557388, 1043712, 557388, 69840, 793, 2315, 407550, 5409180, 16868520, 16868520, 5409180, 407550, 2315, 6817, 2388516, 51011136 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Row sums are A004123(n+2).
LINKS
A. Lakhtakia, R. Messier, V. K. Varadan, V. V. Varadan, Use of combinatorial algebra for diffusion on fractals, Physical Review A 34 (3) (1986) 1986, page 2502, (FIG. 3)
EXAMPLE
2;
5, 5 ;
13, 48, 13 ;
35, 330, 330, 35 ;
97, 2028, 4752, 2028, 97 ;
275, 11970, 54360, 54360, 11970, 275 ;
793, 69840, 557388, 1043712, 557388, 69840, 793 ;
2315, 407550, 5409180, 16868520, 16868520, 5409180, 407550, 2315 ;
6817, 2388516, 51011136, 247761072, 404844480, 247761072, 51011136, 2388516, 6817 ;
20195, 14070570, 473616000, 3441251520, 8491093920, 8491093920, 3441251520, 473616000, 14070570, 20195 ;
60073, 83276472, 4357481076, 46167480576, 164067744672, 244543504896, 164067744672, 46167480576, 4357481076, 83276472, 60073 ;
MAPLE
A154694 := proc(n, m)
(3^m*2^(n-m)+2^m*3^(n-m))*A008292(n+1, m+1) ;
end proc:
seq(seq( A154694(n, m), m=0..n), n=0..10) ; # R. J. Mathar, Mar 11 2024
MATHEMATICA
Clear[t, p, q, n, m]; p = 2; q = 3;
t[n_, m_] =(p^(n - m)*q^m + p^m*q^(n - m))*Sum[(-1)^j*Binomial[n + 2, j]*(m - j + 1)^(n + 1), {j, 0, m + 1}];
Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A174098 A183419 A305314 * A154696 A154698 A063786
KEYWORD
nonn,tabl,easy
AUTHOR
EXTENSIONS
Definition simplified by the Assoc. Eds. of the OEIS, Jun 07 2010
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 September 4 07:24 EDT 2024. Contains 375679 sequences. (Running on oeis4.)