The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A055854 Convolution of A055853 with A011782. 2
0, 1, 9, 53, 253, 1059, 4043, 14407, 48639, 157184, 489872, 1480608, 4358752, 12541184, 35364864, 97960192, 267050240, 717619200, 1903452160, 4989337600, 12937052160, 33212530688, 84484882432, 213090238464, 533236219904 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Ninth column of triangle A055587.
T(n,7) of array T as in A049600.
LINKS
Index entries for linear recurrences with constant coefficients, signature (16,-112,448,-1120,1792,-1792,1024,-256).
FORMULA
a(n)= T(n, 7)= A055587(n+7, 8).
G.f.: x*(1-x)^7/(1-2*x)^8.
MAPLE
seq(coeff(series(x*(1-x)^7/(1-2*x)^8, x, n+1), x, n), n = 0..30); # G. C. Greubel, Jan 16 2020
MATHEMATICA
CoefficientList[Series[x*(1-x)^7/(1-2*x)^8, {x, 0, 30}], x] (* G. C. Greubel, Jan 16 2020 *)
LinearRecurrence[{16, -112, 448, -1120, 1792, -1792, 1024, -256}, {0, 1, 9, 53, 253, 1059, 4043, 14407, 48639, 157184}, 40] (* Harvey P. Dale, Nov 04 2023 *)
PROG
(PARI) my(x='x+O('x^30)); concat([0], Vec(x*(1-x)^7/(1-2*x)^8)) \\ G. C. Greubel, Jan 16 2020
(Magma) R<x>:=PowerSeriesRing(Integers(), 30); [0] cat Coefficients(R!( x*(1-x)^7/(1-2*x)^8 )); // G. C. Greubel, Jan 16 2020
(Sage)
def A055854_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( x*(1-x)^7/(1-2*x)^8 ).list()
A055854_list(30) # G. C. Greubel, Jan 16 2020
CROSSREFS
Sequence in context: A197499 A036425 A126085 * A202514 A005025 A122588
KEYWORD
nonn,easy
AUTHOR
Wolfdieter Lang May 30 2000
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 3 09:48 EDT 2024. Contains 373057 sequences. (Running on oeis4.)