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!)
A154855 Triangle of coefficients of p(x,n) = (1/3)*(1-x)^(n+1)*Sum_{m >= 0} ((5*m+4)^n - (5*m+1)^n)*x^m, read by rows. 4
0, 1, -1, 5, 0, -5, 21, 87, -87, -21, 85, 1330, 0, -1330, -85, 341, 15045, 28160, -28160, -15045, -341, 1365, 152040, 816825, 0, -816825, -152040, -1365, 5461, 1457323, 16786931, 21064365, -21064365, -16786931, -1457323, -5461, 21845, 13592430, 297161830, 939811670, 0, -939811670, -297161830, -13592430, -21845 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Row sums are zero.
LINKS
FORMULA
Rows are coefficients of p(x,n) = (1/3)*(1-x)^(n+1)*Sum_{m >= 0} ((5*m+4)^n - (5*m+1)^n)*x^m.
EXAMPLE
Triangle begins as:
0;
1, -1;
5, 0, -5;
21, 87, -87, -21;
85, 1330, 0, -1330, -85;
341, 15045, 28160, -28160, -15045, -341;
1365, 152040, 816825, 0, -816825, -152040, -1365;
5461, 1457323, 16786931, 21064365, -21064365, -16786931, -1457323, -5461;
MATHEMATICA
T[n_, k_, p_, q_, r_, t_]:= SeriesCoefficient[(1/p)*(1-x)^(n+1)*Sum[((q*j+r)^n - (q*j+t)^n)*x^j, {j, 0, n}], {x, 0, k}];
Table[T[n, k, 3, 5, 4, 1, 3], {n, 0, 12}, {k, 0, n}]//Flatten (* modified by G. C. Greubel, Mar 11 2021 *)
PROG
(Sage)
def f(n, p, q, r, t, x) : return (1/p)*(1-x)^(n+1)*sum( ((q*j+r)^n - (q*j+t)^n )*x^j for j in (0..n))
[[( f(n, 3, 5, 4, 1, x) ).series(x, n+1).list()[k] for k in (0..n)] for n in (0..12)] # G. C. Greubel, Mar 11 2021
CROSSREFS
Sequence in context: A341482 A055953 A165051 * A137562 A021668 A004552
KEYWORD
sign,tabl
AUTHOR
Roger L. Bagula, Jan 16 2009
EXTENSIONS
Edited by G. C. Greubel, Mar 11 2021
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 3 17:12 EDT 2024. Contains 372221 sequences. (Running on oeis4.)