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!)
A200073 Coefficients of a generalized Jaco-Lucas polynomial (odd indices) read by rows. 2
1, 4, 3, 11, 15, 5, 29, 56, 35, 7, 76, 189, 171, 66, 9, 199, 605, 715, 407, 110, 11, 521, 1872, 2730, 2054, 832, 169, 13, 1364, 5655, 9810, 9180, 4965, 1533, 245, 15, 3571, 16779, 33745, 37774, 25585, 10642, 2618, 340, 17, 9349, 49096, 112309, 146357, 119168, 62453, 20862, 4218, 456, 19 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Alternating row sums seem to be 1. - F. Chapoton, Nov 09 2021
LINKS
Y. Sun, Numerical Triangles and Several Classical Sequences, Fib. Quart. 43, no. 4, (2005) 359-370, Table 3.4.
FORMULA
T(n,k) = Sum_{j=0..n} (2n+1)*binomial(2n+1-j,j)*binomial(j,k)/(2n+1-j).
EXAMPLE
Triangle begins:
1,
4, 3,
11, 15, 5,
29, 56, 35, 7,
76, 189, 171, 66, 9,
...
MAPLE
A200073 := proc(n, k)
(2*n+1)*add( binomial(2*n+1-j, j)*binomial(j, k)/(2*n+1-j), j=0..n) ;
end proc:
seq(seq(A200073(n, k), k=0..n), n=0..13) ; # R. J. Mathar, Nov 13 2011
MATHEMATICA
T[n_, k_] := Sum[(2n+1) Binomial[2n+1-j, j] Binomial[j, k]/(2n+1-j), {j, 0, n}];
Table[T[n, k], {n, 0, 9}, {k, 0, n}] // Flatten (* Jean-François Alcover, Apr 02 2020 *)
CROSSREFS
Cf. A002878 (first column), A005408 (diagonal).
Sequence in context: A086564 A316966 A295727 * A080777 A001166 A065337
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Nov 13 2011
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 April 24 15:57 EDT 2024. Contains 371961 sequences. (Running on oeis4.)