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!)
A154991 Symmetrical triangle sequence from polynomials: q(x,n)=-((-1)^n*(Sum[(k + 1)^n*x^k/k^2, {k, 1, Infinity}] - PolyLog[2, x])*(x - 1)^(n - 1) + (-1)^n*n *(-1 + x)^(n - 1) Log[1 - x])/x; p(x,n)=q(x,n)+x^n*q(1/x,n). 0
2, 1, 1, 17, -30, 17, 16, -10, -10, 16, 72, -176, 256, -176, 72, 99, -57, 78, 78, -57, 99, 275, -282, 1557, -1660, 1557, -282, 275, 466, 1180, 2904, 490, 490, 2904, 1180, 466, 1058, 5244, 21704, 4580, 15468, 4580, 21704, 5244, 1058 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row sums are: 2*n!;
{2, 2, 4, 12, 48, 240, 1440, 10080, 80640, 725760,...}.
It was very difficult to separate out the polynomial from the Log and PolyLog terms.
This term:
(-1)^n*n *(-1 + x)^(n - 1) Log[1 - x];
is very strange.
General polynomials based on sums of the sort:
Sum[(k + 1)^n*x^k/k^m, {k, 1, Infinity}];m=Integer
that are Zeta[m] like probably exist.
LINKS
FORMULA
q(x,n)=-((-1)^n*(Sum[(k + 1)^n*x^k/k^2, {k, 1, Infinity}] - PolyLog[2, x])*(x - 1)^(n - 1)
+ (-1)^n*n *(-1 + x)^(n - 1) Log[1 - x])/x;
p(x,n)=q(x,n)+x^n*q(1/x,n);
t(n,m)=coefficients(p(x,n)).
EXAMPLE
{2},
{1, 1},
{17, -30, 17},
{16, -10, -10, 16},
{72, -176, 256, -176, 72},
{99, -57, 78, 78, -57, 99},
{275, -282, 1557, -1660, 1557, -282, 275},
{466, 1180, 2904, 490, 490, 2904, 1180, 466}, {1058, 5244, 21704, 4580, 15468, 4580, 21704, 5244, 1058}
MATHEMATICA
Clear[p, x, n];
p[x_, n_] = -((-1)^n*(Sum[(k + 1)^n*x^k/k^2, {k, 1, Infinity}] - PolyLog[2, x])*(x - 1)^(n - 1) + (-1)^n*n *(-1 + x)^(n - 1) Log[1 - x])/x;
Table[FullSimplify[ExpandAll[p[x, n]]], {n, 1, 10}];
Table[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x] + Reverse[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x]], {n, 1, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A309036 A294756 A174918 * A090163 A179071 A124001
KEYWORD
sign,tabl,uned
AUTHOR
Roger L. Bagula, Jan 18 2009
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)