A156919
Table of coefficients of polynomials related to the Dirichlet eta function.
Original entry on oeis.org
1, 2, 1, 4, 10, 1, 8, 60, 36, 1, 16, 296, 516, 116, 1, 32, 1328, 5168, 3508, 358, 1, 64, 5664, 42960, 64240, 21120, 1086, 1, 128, 23488, 320064, 900560, 660880, 118632, 3272, 1, 256, 95872, 2225728
Offset: 0
The first few rows of the triangle are:
[1]
[2, 1]
[4, 10, 1]
[8, 60, 36, 1]
[16, 296, 516, 116, 1]
The first few P(z;n) are:
P(z; n=0) = 1
P(z; n=1) = 2 + z
P(z; n=2) = 4 + 10*z + z^2
P(z; n=3) = 8 + 60*z + 36*z^2 + z^3
The first few SF(z;n) are:
SF(z; n=0) = (1/2)*(1)/(1-z)^(3/2);
SF(z; n=1) = (1/4)*(2+z)/(1-z)^(5/2);
SF(z; n=2) = (1/8)*(4+10*z+z^2)/(1-z)^(7/2);
SF(z; n=3) = (1/16)*(8+60*z+36*z^2+z^3)/(1-z)^(9/2);
In the Savage-Viswanathan paper, the coefficients appear as
1;
1, 2;
1, 10, 4;
1, 36, 60, 8;
1, 116, 516, 296, 16;
1, 358, 3508, 5168, 1328, 32;
1, 1086, 21120, 64240, 42960, 5664, 64;
...
- D. H. Lehmer, Interesting Series Involving the Central Binomial Coefficient, Am. Math. Monthly 92 (1985) 449-457, Polynomial V in eq (17). [R. J. Mathar, Feb 24 2009]
- Shi-Mei Ma, A family of two-variable derivative polynomials for tangent and secant, arXiv: 1204.4963v3 [math.CO], 2012.
- Shi-Mei Ma, A family of two-variable derivative polynomials for tangent and secant, El J. Combinat. 20 (1) (2013) P11
- S.-M. Ma and T. Mansour, The 1/k-Eulerian polynomials and k-Stirling permutations, arXiv preprint arXiv:1409.6525 [math.CO], 2014.
- S.-M. Ma and Y.-N. Yeh, Stirling permutations, cycle structures of permutations and perfect matchings, arXiv preprint arXiv:1503.06601 [math.CO], 2015.
- Carla D. Savage and Gopal Viswanathan, The 1/k-Eulerian polynomials, Elec. J. of Comb., Vol. 19, Issue 1, #P9 (2012).
- Eric Weisstein's World of Mathematics, Dirichlet Eta Function
-
A156919 := proc(n,m) if n=m then 1; elif m=0 then 2^n ; elif m<0 or m>n then 0; else 2*(m+1)*procname(n-1,m)+(2*n-2*m+1)*procname(n-1,m-1) ; end if; end proc: seq(seq(A156919(n,m), m=0..n), n=0..7); # R. J. Mathar, Feb 03 2011
-
g[0] = 1/Sqrt[1-x]; g[n_] := g[n] = 2x*D[g[n-1], x]; p[n_] := g[n] / g[0]^(2n+1) // Cancel; row[n_] := CoefficientList[p[n], x] // Rest; Table[row[n], {n, 0, 9}] // Flatten (* Jean-François Alcover, Aug 09 2012, after Peter Bala *)
Flatten[Table[Rest[CoefficientList[Nest[2 x D[#, x] &, (1 - x)^(-1/2), k] (1 - x)^(k + 1/2), x]], {k, 10}]] (* Jan Mangaldan, Mar 15 2013 *)
A156925
FP2 polynomials related to the generating functions of the left hand columns of the A156920 triangle.
Original entry on oeis.org
1, 1, 1, 1, 8, -11, -6, 1, 38, -108, -242, 839, -444, -180, 1, 144, -425, -7382, 48451, -96764, -2559, 257002, -312444, 88344, 30240, 1, 487, 720, -130472, 1277794, -4193514, -6504496
Offset: 0
The first few rows of the "triangle" of the coefficients of the FP2 polynomials.
In the columns the coefficients of the powers of z^m, m=0,1,2,..., appear.
[1]
[1, 1]
[1, 8, -11, -6]
[1, 38, -108, -242, 839, -444, -180]
[1, 144, -425, -7382, 48451, -96764, -2559, 257002, -312444, 88344, 30240]
Matrix of the coefficients of the FP2 polynomials. The coefficients in the columns of this matrix are the powers of z^m, m=0,1,2,...
[1, 0, 0, 0, 0, 0, 0]
[1, 1, 0, 0, 0, 0, 0]
[1, 8 , -11, -6, 0, 0, 0]
[1, 38, -108, -242, 839, -444, -180]
The first few FP2 polynomials are:
FP2(z; LHCnr = 1) = 1
FP2(z; LHCnr = 2) = (1+z)
FP2(z; LHCnr = 3) = 1+8*z-11*z^2-6*z^3
Some GF2(z;LHCnr) are:
GF2(z; LHCnr = 3) = (1+8*z-11*z^2-6*z^3)/((1-z)^3*(1-2*z)^2*(1-3*z))
GF2(z; LHCnr = 4) = (1+38*z-108*z^2-242*z^3+839*z^4-444*z^5-180*z^6)/((1-z)^4*(1-2*z)^3*(1-3*z)^2*(1-4*z))
The number of FP2 terms follow the 'Lazy Caterer's sequence'
A000124.
For the polynomials in the denominators of the GF2(z;LHCnr) see
A157703.
-
LHCnr:=5; LHCmax:=(LHCnr)*(LHCnr-1)/2: RHCend:=LHCnr+LHCmax: for k from LHCnr to RHCend do for n from 0 to k do S2[k,n]:=sum((-1)^(n+i)*binomial(n,i)*i^k/n!,i=0..n) end do: G(k,x):= sum(S2[k,p]*((2*p)!/p!)*x^p/(1-4*x)^(p+1),p=0..k)/ (((-1)^(k+1)*2*x)/(-1+4*x)^(k+1)): fx:=simplify(G(k,x)): nmax:=degree(fx); for n from 0 to nmax do d[n]:= coeff(fx,x,n)/2^n end do: LHC[n]:=d[LHCnr-1] end do: a:=n-> LHC[n]: seq(a(n), n=LHCnr..RHCend); for nx from 0 to LHCmax do num:=sort(sum(A[t]*z^t,t=0..LHCmax)): nom:=product((1-u*z)^(LHCnr-u+1),u=1..LHCnr); LHCb:=series(num/nom,z,nx+1); y:=coeff(LHCb,z,nx)-A[nx]; x:=LHC[LHCnr+nx]; A[nx]:=x-y; end do: FP2[LHCnr]:=sort(num,z, ascending); GenFun[LHCnr]:= FP2[LHCnr]/ product((1-m*z)^(LHCnr-m+1), m=1..LHCnr);
A156920
Triangle of the normalized A142963 and A156919 sequences.
Original entry on oeis.org
1, 1, 1, 1, 5, 1, 1, 15, 18, 1, 1, 37, 129, 58, 1, 1, 83, 646, 877, 179, 1, 1, 177, 2685, 8030, 5280, 543, 1, 1, 367, 10002, 56285, 82610, 29658, 1636, 1, 1, 749, 34777, 335162, 919615, 756218, 159742, 4916, 1
Offset: 0
The first few rows of the triangle are:
[1]
[1, 1]
[1, 5, 1]
[1, 15, 18, 1]
[1, 37, 129, 58, 1]
[1, 83, 646, 877, 179, 1]
-
A156920 := proc(n,m): if n=m then 1; elif m=0 then 1 ; elif m<0 or m>n then 0; else (m+1)*procname(n-1, m)+(2*n-2*m+1)*procname(n-1, m-1) ; end if; end proc: seq(seq(A156920(n, m), m=0..n), n=0..8);
RHCnr:=5; RHCmax:=10; RHCend:=RHCnr+RHCmax: for k from RHCnr to RHCend do for n from 0 to k do S2[k,n]:=sum((-1)^(n+i)*binomial(n,i)*i^k/n!,i=0..n) end do: G(k,x):= sum(S2[k,p]*((2*p)!/p!) *x^p/(1-4*x)^(p+1),p=0..k)/(((-1)^(k+1)*2*x)/(-1+4*x)^(k+1)): fx:=simplify(G(k,x)): nmax:=degree(fx); RHC[k-RHCnr+1]:= coeff(fx,x,k-RHCnr)/2^(k-RHCnr) end do: a:=n-> RHC[n]: seq(a(n), n=1..RHCend-RHCnr);
LHCnr:=5; LHCmax:=10: LHCend:=LHCnr+LHCmax: for k from LHCnr to LHCend do for n from 0 to k do S2[k,n]:=sum((-1)^(n+i)*binomial(n,i)*i^k/n!,i=0..n) end do: G(k,x):= sum(S2[k,p]*((2*p)!/p!)*x^p/(1-4*x)^(p+1),p=0..k)/ (((-1)^(k+1)*2*x)/(-1+4*x)^(k+1)): fx:=simplify(G(k,x)): nmax:=degree(fx); for n from 0 to nmax do d[n]:= coeff(fx,x,n)/2^n end do: LHC[n]:=d[LHCnr-1] end do: a:=n-> LHC[n]: seq(a(n), n=LHCnr..LHCend-1);
-
T[, 0] = 1; T[n, n_] = 1; T[n_, m_] := T[n, m] = (m + 1)*T[n - 1, m] + (2*n - 2*m + 1)*T[n - 1, m - 1];
Table[T[n, m], {n, 0, 8}, {m, 0, n}] // Flatten (* Jean-François Alcover, Nov 14 2017 *)
A142963
Triangle read by rows, coefficients of the polynomials P(k, x) = (1/2) Sum_{p=0..k-1} Stirling2(k, p+1)*x^p*(1-4*x)^(k-1-p)*(2*p+2)!/(p+1)!.
Original entry on oeis.org
1, 1, 2, 1, 10, 4, 1, 30, 72, 8, 1, 74, 516, 464, 16, 1, 166, 2584, 7016, 2864, 32, 1, 354, 10740, 64240, 84480, 17376, 64, 1, 734, 40008, 450280, 1321760, 949056, 104704, 128, 1, 1498, 139108, 2681296, 14713840, 24198976, 10223488, 629248, 256, 1, 3030, 462264, 14341992
Offset: 1
Triangle starts:
[1]
[1, 2]
[1, 10, 4]
[1, 30, 72, 8]
[1, 74, 516, 464, 16]
[1, 166, 2584, 7016, 2864, 32]
[1, 354, 10740, 64240, 84480, 17376, 64]
[1, 734, 40008, 450280, 1321760, 949056, 104704, 128]
...
P(3,x) = 1+10*x+4*x^2.
G(3,x) = 2*x*(1+10*x+4*x^2)/(1-4*x)^4.
-
A142963 := proc(n,m): if n=m+1 then 2^(n-1); elif m=0 then 1 ; elif m<0 or m>n-1 then 0; else (m+1)*procname(n-1, m)+(4*n-4*m-2)*procname(n-1, m-1); end if; end proc: seq(seq(A142963(n,m), m=0..n-1), n=1..9); # Johannes W. Meijer, Sep 28 2011
# Alternatively (assumes offset 0):
p := (n,x) -> (1/2)*add(Stirling2(n+1,k+1)*x^k*(1-4*x)^(n-k)*(2*k+2)!/(k+1)!, k=0..n): for n from 0 to 7 do [n], PolynomialTools:-CoefficientList(p(n,x), x) od;
# Peter Luschny, Jun 18 2017
-
t[, 0] = 1; t[n, m_] /; m == n-1 := 2^m; t[n_, m_] := (m+1)*t[n-1, m] + (4*n-4*m-2)*t[n-1, m-1]; Table[t[n, m], {n, 1, 10}, {m, 0, n-1}] // Flatten (* Jean-François Alcover, Jun 21 2013, after Johannes W. Meijer *)
Name reformulated with offset corrected, edited by
Wolfdieter Lang, Aug 23 2019
A211399
Triangle T(n,k), 0 <= k <= n, given by (0, 1, 0, 2, 0, 3, 0, 4, 0, 5, 0, ...) DELTA (1, 0, 3, 0, 5, 0, 7, 0, 9, 0, ...) where DELTA is the operator defined in A084938.
Original entry on oeis.org
1, 0, 1, 0, 1, 1, 0, 1, 5, 1, 0, 1, 15, 18, 1, 0, 1, 37, 129, 58, 1, 0, 1, 83, 646, 877, 179, 1, 0, 1, 177, 2685, 8030, 5280, 543, 1, 0, 1, 367, 10002, 56285, 82610, 29658, 1636, 1, 0, 1, 749, 34777, 335162
Offset: 0
Triangle begins :
1
0, 1
0, 1, 1
0, 1, 5, 1
0, 1, 15, 18, 1
0, 1, 37, 129, 58, 1
0, 1, 83, 646, 877, 179, 1
Showing 1-5 of 5 results.
Comments