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!)
A154334 A triangular sequence of coefficients of polynomials: p(x,n) = ((x - 1)^n *(Sum_{k>=0} (((-1)^n*(2*k + 1)^(n - 1)))*x^k) + (x - 1)^(n + 1)*(Sum_{k>=0} ((-1)^(n + 1)*k^n)*x^k)/x)/2. 1
1, 1, 1, 1, 5, 1, 1, 17, 17, 1, 1, 51, 148, 51, 1, 1, 147, 992, 992, 147, 1, 1, 421, 5867, 12982, 5867, 421, 1, 1, 1213, 32475, 137671, 137671, 32475, 1213, 1, 1, 3527, 173110, 1286761, 2415602, 1286761, 173110, 3527, 1, 1, 10343, 902090, 11081582, 35361824, 35361824, 11081582, 902090, 10343, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are: {1, 2, 7, 36, 252, 2280, 25560, 342720, 5342400, 94711680, ...}.
LINKS
FORMULA
p(x,n) = ((x - 1)^n * (Sum_{k>=0} (((-1)^(n)*(2*k + 1)^(n - 1)))*x^k) + (x - 1)^(n + 1) * (Sum_{k>=0} ((-1)^(n + 1)*k^n)*x^k)/x)/2.
Functional form:
p(x,n) = ((-1)^n* 2^(-1 + n)* (-1 + x)^n* LerchPhi(x, 1 - n, 1/2) + (-1)^(1 + n) *(-1 + x)^(1 + n)* PolyLog(-n, x)/x)/2.
t(n,m) = Coefficients(p(x,n)).
EXAMPLE
{1},
{1, 1},
{1, 5, 1},
{1, 17, 17, 1},
{1, 51, 148, 51, 1},
{1, 147, 992, 992, 147, 1},
{1, 421, 5867, 12982, 5867, 421, 1},
{1, 1213, 32475, 137671, 137671, 32475, 1213, 1},
{1, 3527, 173110, 1286761, 2415602, 1286761, 173110, 3527, 1},
{1, 10343, 902090, 11081582, 35361824, 35361824, 11081582, 902090, 10343, 1}
MATHEMATICA
Clear[p, x, n]; p[x_, n_] = ((x - 1)^(n)*Sum[(((-1)^(n)*(2*k + 1)^(n - 1)))*x^k, {k, 0, Infinity}]
+ (x - 1)^(n + 1)*Sum[((-1)^(n + 1)*k^n)*x^k, {k, 0, Infinity}]/x)/2;
Table[FullSimplify[ExpandAll[p[x, n]]], {n, 1, 10}];
Table[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x], {n, 1, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A157181 A347974 A029847 * A178346 A168551 A262307
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Jan 07 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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)