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.

A146568 Coefficients of Pascal's triangle polynomial minus MacMahon polynomial A060187 with a power of x divided out: q(x,n)=2^n*(1 - x)^(n + 1)* LerchPhi[x, -n, 1/2]; p(x,n)=((x+1)^n-q(x,n))/x.

This page as a plain text file.
%I A146568 #13 Apr 08 2021 05:34:23
%S A146568 4,20,20,72,224,72,232,1672,1672,232,716,10528,23528,10528,716,2172,
%T A146568 60636,259688,259688,60636,2172,6544,331584,2485232,4674944,2485232,
%U A146568 331584,6544,19664,1756304,21707888,69413168,69413168,21707888,1756304
%N A146568 Coefficients of Pascal's triangle polynomial minus MacMahon polynomial A060187 with a power of x divided out: q(x,n)=2^n*(1 - x)^(n + 1)* LerchPhi[x, -n, 1/2]; p(x,n)=((x+1)^n-q(x,n))/x.
%C A146568 First elements in each row are: 3^n - 2*n - 1 (A061981).
%F A146568 q(x,n)=2^n*(1 - x)^(n + 1)* LerchPhi[x, -n, 1/2]; p(x,n)=((x+1)^n-q(x,n))/x; t(n,m)=Coefficients(p(x,n)) with n starting at 2.
%e A146568 Triangle starts:
%e A146568 {4},
%e A146568 {20, 20},
%e A146568 {72, 224, 72},
%e A146568 {232, 1672, 1672, 232},
%e A146568 {716, 10528, 23528, 10528, 716},
%e A146568 {2172, 60636, 259688, 259688, 60636, 2172},
%e A146568 {6544, 331584, 2485232, 4674944, 2485232, 331584, 6544},
%e A146568 {19664, 1756304, 21707888, 69413168, 69413168, 21707888, 1756304, 19664},
%e A146568 {59028, 9116096, 178300784, 906923072, 1527092216, 906923072, 178300784, 9116096, 59028}
%t A146568 q[x_, n_] = 2^n*(1 - x)^(n + 1)* LerchPhi[x, -n, 1/2]; p[x_, n_] = (q[x, n] - (x + 1)^n)/x; Table[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x], {n, 2, 10}]; Flatten[%]
%Y A146568 Cf. A061981, A060187.
%K A146568 nonn,tabl,uned,less
%O A146568 2,1
%A A146568 _Roger L. Bagula_, Nov 01 2008