cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A193474 Table read by rows: The coefficients of the polynomials P(n, x) = Sum{k=0..n} Sum{j=0..k} (-1)^j * 2^(-k) * binomial(k, j) * (k-2*j)^n * x^(n-k).

This page as a plain text file.
%I A193474 #14 Apr 12 2023 10:27:28
%S A193474 1,1,0,2,0,0,6,0,1,0,24,0,8,0,0,120,0,60,0,1,0,720,0,480,0,32,0,0,
%T A193474 5040,0,4200,0,546,0,1,0,40320,0,40320,0,8064,0,128,0,0,362880,0,
%U A193474 423360,0,115920,0,4920,0,1,0,3628800,0,4838400,0,1693440,0,130560,0,512,0,0
%N A193474 Table read by rows: The coefficients of the polynomials P(n, x) = Sum{k=0..n} Sum{j=0..k} (-1)^j * 2^(-k) * binomial(k, j) * (k-2*j)^n * x^(n-k).
%C A193474 See A196776 for a row reversed form of this triangle. - _Peter Bala_, Oct 06 2011
%F A193474 P(n, 0) = A000142(n).
%F A193474 P(n, 1) = A006154(n).
%F A193474 P(n, 2) = A191277(n).
%F A193474 P(n, i) = A000111(n+1), where i is the imaginary unit.
%F A193474 P(n, i)*2^n = A000828(n+1).
%F A193474 P(n, 1/2)*2^n = A000557(n).
%F A193474 P(n, 1/3)*3^n = A107403(n).
%F A193474 P(n, i/2)*2^n = A007289(n).
%F A193474 G(m, x) = 1/(1 - m*sinh(x)) is the generating function of m^n*P(n, 1/m).
%F A193474 GI(m, x) = 1/(1 - m*sin(x)) is the generating function of m^n*P(n, i/m).
%F A193474 [x^2] P(n+1, x) = A005990(n).
%e A193474 The sequence of polynomials P(n, x) begins:
%e A193474 [0]    1;
%e A193474 [1]    1;
%e A193474 [2]    2;
%e A193474 [3]    6 +      x^2;
%e A193474 [4]   24 +    8*x^2;
%e A193474 [5]  120 +   60*x^2 +     x^4;
%e A193474 [6]  720 +  480*x^2 +  32*x^4;
%e A193474 [7] 5040 + 4200*x^2 + 546*x^4 + x^6.
%p A193474 A193474_polynom := proc(n,x) local k, j;
%p A193474 add(add((-1)^j*2^(-k)*binomial(k,j)*(k-2*j)^n*x^(n-k),j=0..k),k=0..n) end: seq(seq(coeff(A193474_polynom(n,x),x,i),i=0..n),n=0..10);
%t A193474 p[n_, x_] := Sum[(-1)^j*2^(-k)*Binomial[k, j]*(k-2*j)^n*x^(n-k), {k, 0, n}, {j, 0, k}]; t[n_, k_] := Coefficient[p[n, x], x, k]; t[0, 0] = 1; Table[t[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* _Jean-François Alcover_, Jan 27 2014 *)
%Y A193474 Cf. A196776, A000142, A006154, A191277, A000111, A000828, A000557, A107403, A007289, A005990.
%K A193474 nonn,tabl
%O A193474 1,4
%A A193474 Peter Luschny, Aug 01 2011