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!)
A353594 Triangle read by rows, T(n, k) = Sum_{j=0..n} binomial(j, k)*A352687(n, j). 0
1, 1, 1, 2, 3, 1, 4, 8, 5, 1, 10, 25, 22, 8, 1, 28, 84, 95, 50, 12, 1, 84, 294, 406, 280, 100, 17, 1, 264, 1056, 1722, 1470, 700, 182, 23, 1, 858, 3861, 7260, 7392, 4410, 1554, 308, 30, 1, 2860, 14300, 30459, 36036, 25872, 11550, 3150, 492, 38, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
Triangle starts:
[0] 1;
[1] 1, 1;
[2] 2, 3, 1;
[3] 4, 8, 5, 1;
[4] 10, 25, 22, 8, 1;
[5] 28, 84, 95, 50, 12, 1;
[6] 84, 294, 406, 280, 100, 17, 1;
[7] 264, 1056, 1722, 1470, 700, 182, 23, 1;
[8] 858, 3861, 7260, 7392, 4410, 1554, 308, 30, 1;
[9] 2860, 14300, 30459, 36036, 25872, 11550, 3150, 492, 38, 1;
MAPLE
S := (n, k) -> if n = k then 1 elif k = 0 then 0 else
binomial(n, k)^2*(k*(2*k^2 + (n + 1)*(n - 2*k)))/(n^2*(n - 1)*(n - k + 1)) fi:
T := (n, k) -> add(binomial(j, k)*S(n, j), j = 0..n):
CROSSREFS
Cf. A352687, A068875 (column 0), A238113 (half row sums)
Sequence in context: A200139 A321621 A321629 * A075297 A057597 A226392
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, May 02 2022
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 August 9 20:04 EDT 2024. Contains 375044 sequences. (Running on oeis4.)