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!)
A306405 T(n,k) = k*Sum_{i=0..(n-k)/2} C(k,2*k+2*i-n)*C(k+2*i-1,i)/(k+i), triangle read by rows for n >= 1 and 1 <= k <= n. 0
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 2, 4, 6, 4, 1, 2, 7, 10, 10, 5, 1, 5, 10, 18, 20, 15, 6, 1, 5, 19, 30, 39, 35, 21, 7, 1, 14, 28, 55, 72, 75, 56, 28, 8, 1, 14, 56, 93, 136, 151, 132, 84, 36, 9, 1, 42, 84, 174, 248, 300, 288, 217, 120, 45, 10, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
G.f.: 1/(1-y*(x*(1+x)*(1-sqrt(1-4*x^2))/(2*x^2)))-1.
EXAMPLE
1;
1, 1;
1, 2, 1;
1, 3, 3, 1;
2, 4, 6, 4, 1;
2, 7, 10, 10, 5, 1;
5, 10, 18, 20, 15, 6, 1;
MAPLE
# Seen as a (0, 0)-based triangle:
gf := (2*(x + 1))/(sqrt(1 - 4*x^2) - 2*x*(x + 1)*y + 1):
serx := series(gf, x, 20): sery := n -> series(coeff(serx, x, n), y, 20):
row := n -> seq(coeff(sery(n), y, j), j=0..n):
seq(lprint(row(n)), n=0..9); # Peter Luschny, Feb 14 2019
PROG
(Maxima)
T(n, k):=k*sum((binomial(k, 2*k+2*i-n)*binomial(k+2*i-1, i))/(k+i), i, 0, (n-k)/2);
CROSSREFS
Sequence in context: A030189 A275678 A273108 * A114162 A259074 A162981
KEYWORD
nonn,tabl
AUTHOR
Vladimir Kruchinin, Feb 13 2019
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 March 28 11:59 EDT 2024. Contains 371254 sequences. (Running on oeis4.)