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!)
A168290 T(n,k) = 5*A046802(n+1,k+1) - 4*A007318(n,k), triangle read by rows (0 <= k <= n). 8
1, 1, 1, 1, 7, 1, 1, 23, 23, 1, 1, 59, 141, 59, 1, 1, 135, 615, 615, 135, 1, 1, 291, 2305, 4335, 2305, 291, 1, 1, 607, 7971, 25415, 25415, 7971, 607, 1, 1, 1243, 26293, 133771, 224365, 133771, 26293, 1243, 1, 1, 2519, 84191, 656039, 1722251, 1722251, 656039 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
E.g.f.: 5*(1 - x)*exp(t)/(1 - x*exp(t*(1 - x))) - 4*exp(t*(1 + x)).
EXAMPLE
Triangle begins:
1;
1, 1;
1, 7, 1;
1, 23, 23, 1;
1, 59, 141, 59, 1;
1, 135, 615, 615, 135, 1;
1, 291, 2305, 4335, 2305, 291, 1;
1, 607, 7971, 25415, 25415, 7971, 607, 1;
1, 1243, 26293, 133771, 224365, 133771, 26293, 1243, 1;
... reformatted. - Franck Maminirina Ramaharo, Oct 21 2018
MATHEMATICA
p[t_] = 5*(1 - x)*Exp[t]/(1 - x*Exp[t*(1 - x)]) - 4*Exp[t*(1 + x)];
Table[CoefficientList[FullSimplify[n!*SeriesCoefficient[Series[p[ t], {t, 0, n}], n]], x], {n, 0, 10}]//Flatten
PROG
(Maxima)
A046802(n, k) := sum(binomial(n - 1, r)*sum(j!*(-1)^(k - j - 1)*stirling2(r, j)*binomial(r - j, k - j - 1), j, 0, k - 1), r, k - 1, n - 1)$
T(n, k) := 5*A046802(n + 1, k + 1) - 4*binomial(n, k)$
create_list(T(n, k), n, 0, 10, k, 0, n);
/* Franck Maminirina Ramaharo, Oct 21 2018 */
CROSSREFS
Triangles related to Eulerian numbers: A008292, A046802, A060187, A123125.
Sequence in context: A046739 A056752 A053714 * A218695 A179837 A238743
KEYWORD
nonn,tabl,easy
AUTHOR
Roger L. Bagula, Nov 22 2009
EXTENSIONS
Edited, new name by Franck Maminirina Ramaharo, Oct 21 2018
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 July 23 04:24 EDT 2024. Contains 374544 sequences. (Running on oeis4.)