A160486 Triangle of polynomial coefficients related to the o.g.f.s. of the RBS1 polynomials.
1, 1, 1, 1, 18, 5, 1, 179, 479, 61, 1, 1636, 18270, 19028, 1385, 1, 14757, 540242, 1949762, 1073517, 50521, 1, 132854, 14494859, 137963364, 241595239, 82112518, 2702765
Offset: 1
Examples
The first few rows of the triangle are: [1] [1, 1] [1, 18, 5] [1, 179, 479, 61] [1, 1636, 18270, 19028, 1385] The first few RB(z,1-2*m) polynomials are: RB(z,-1) = 1 RB(z,-3) = z+1 RB(z,-5) = z^2+18*z+5 RB(z,-7) = z^3+179*z^2+479*z+61 The first few GFRBS1(z,1-2*m) are: GFRBS1(z,-1) = (-1)*(1)/(z-1) GFRBS1(z,-3) = (-1)*(z+1)/(z-1)^2 GFRBS1(z,-5) = (-1)*(z^2+18*z+5)/(z-1)^3 GFRBS1(z,-7) = (-1)*(z^3+179*z^2+479*z+61)/(z-1)^4
Crossrefs
Programs
-
Maple
nmax:=15; G := sqrt(1-t)/(sqrt(1-t)*cosh(x*sqrt(1-t))-sinh(x*sqrt(1-t))): Gser := simplify(series(G, x=0, nmax+1)): for m from 0 to nmax do P[m] := sort(expand(m!* coeff(Gser, x, m))) od: nmx := floor(nmax/2); for n from 0 to nmx do for k from 0 to nmx-1 do A(n+1, n+1-k) := coeff(P[2*n], t, n-k) od: od: seq(seq(A(n,m), m=1..n), n=1..nmx);
Comments