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!)
A171684 Triangle T(n,k) which contains 8*n!*2^floor((n+1)/2) times the coefficient [t^n x^k] exp(t*x)/(7 + exp(4*t)) in row n, column k. 2
1, -1, 2, -3, -2, 2, -11, -18, -6, 4, 30, -44, -36, -8, 4, 866, 300, -220, -120, -20, 8, 3858, 5196, 900, -440, -180, -24, 8, -23654, 54012, 36372, 4200, -1540, -504, -56, 16, -722760, -189232, 216048, 96992, 8400, -2464, -672, -64, 16, -10842136 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The bivariate taylor expansion of exp(t*x)/(7+exp(4*t)) is 1/8 + (x/8-1/16)*t +(-3/32+x^2/16 -x/16)*t^2+...
Row n contains the coefficients of the polynomial in front of t^n, multiplied by 8*floor[(n+1)/2]*n!.
Row sums are: 1, 1, -3, -31, -54, 814, 9318, 68846, -593736, -23801144, -146144808, ....
LINKS
EXAMPLE
The triangle starts in row n=0 with columns 0<=k <=n as
1;
-1, 2;
-3, -2, 2;
-11, -18, -6, 4;
30, -44, -36, -8, 4;
866, 300, -220, -120, -20, 8;
3858, 5196, 900, -440, -180, -24, 8;
-23654, 54012, 36372, 4200, -1540, -504, -56, 16;
-722760, -189232, 216048, 96992, 8400, -2464, -672, -64, 16;
-10842136, -13009680, -1703088, 1296288, 436464, 30240, -7392, -1728, -144, 32;
28850712, -108421360, -65048400, -5676960, 3240720, 872928, 50400, -10560, -2160, -160, 32;
MATHEMATICA
Clear[p, g, m, a];
m = 2;
p[t_] = 2^(m + 1)*Exp[t*x]/(-1 + 2^(m + 1) + Exp[2^m*t])
Table[ FullSimplify[ExpandAll[2^ Floor[(n + 1)/2]*n!*SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]]], {n, 0, 10}]
a = Table[CoefficientList[FullSimplify[ExpandAll[2^Floor[(n + 1)/2]*n!*SeriesCoefficient[ Series[p[t], {t, 0, 30}], n]]], x], {n, 0, 10}]
Flatten[a]
CROSSREFS
Sequence in context: A353390 A298310 A138680 * A123703 A105436 A266911
KEYWORD
sign,tabl
AUTHOR
Roger L. Bagula, Dec 15 2009
EXTENSIONS
Number of variables in use reduced from 4 to 2, keyword:tabl added - The Assoc. Eds. of the OEIS, Oct 20 2010
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 May 10 12:30 EDT 2024. Contains 372387 sequences. (Running on oeis4.)