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!)
A117716 Triangle T(n,k) read by rows: the coefficient [x^n] of x^2/(1-(k+1)*x-x^3) in row n, columns 0 <= k <= n. 4
0, 0, 0, 1, 1, 1, 1, 2, 3, 4, 1, 4, 9, 16, 25, 2, 9, 28, 65, 126, 217, 3, 20, 87, 264, 635, 1308, 2415, 4, 44, 270, 1072, 3200, 7884, 16954, 32960, 6, 97, 838, 4353, 16126, 47521, 119022, 264193, 534358, 9, 214, 2601, 17676, 81265, 286434, 835569, 2117656, 4815801, 10050030 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
EXAMPLE
Triangle begins as:
0;
0, 0;
1, 1, 1;
1, 2, 3, 4;
1, 4, 9, 16, 25;
2, 9, 28, 65, 126, 217;
3, 20, 87, 264, 635, 1308, 2415;
4, 44, 270, 1072, 3200, 7884, 16954, 32960;
MAPLE
A117716 := proc(n, m)
x^2/(1-(m+1)*x-x^3) ;
if n < 0 then
0;
else
coeftayl(%, x=0, n) ;
end if;
end proc: # R. J. Mathar, May 14 2013
MATHEMATICA
T[n_, k_]:= T[n, k]= Coefficient[Series[x^2/(1-(k+1)*x-x^3), {x, 0, n+ 2}], x, n];
Table[T[n, k], {n, 0, 12}, {k, 0, n}]//Flatten
PROG
(Magma)
m:=12;
R<x>:=PowerSeriesRing(Integers(), m+2);
A117716:= func< n, k | Coefficient(R!( x^2/(1-(k+1)*x-x^3) ), n) >;
[[A117716(n, k): k in [0..n]]: n in [0..m]]; // G. C. Greubel, Jul 23 2023
(SageMath)
def A117716(n, k):
P.<x> = PowerSeriesRing(QQ)
return P( x^2/(1-(k+1)*x-x^3) ).list()[n]
flatten([[A117716(n, k) for k in range(n+1)] for n in range(13)]) # G. C. Greubel, Jul 23 2023
CROSSREFS
Cf. A000930 (column 0), A008998 (column 1), A052541 (column 2), A052927 (column 3), A001093 (row 5), A185065 (row 6), A117715, A117724.
Sequence in context: A352724 A248723 A117742 * A211234 A359122 A240185
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Apr 13 2006, corrected Apr 15 2006
EXTENSIONS
Edited by G. C. Greubel, Jul 23 2023
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 June 30 07:07 EDT 2024. Contains 373861 sequences. (Running on oeis4.)