A188106 Triangle T(n,k) with the coefficient [x^k] of 1/(1-2*x-x^2+x^3)^(n-k+1) in row n, column k.
1, 1, 2, 1, 4, 5, 1, 6, 14, 11, 1, 8, 27, 42, 25, 1, 10, 44, 101, 119, 56, 1, 12, 65, 196, 342, 322, 126, 1, 14, 90, 335, 770, 1080, 847, 283, 1, 16, 119, 526, 1495, 2772, 3248, 2180, 636, 1, 18, 152, 777, 2625, 6032, 9366, 9414, 5521, 1429, 1, 20, 189, 1096, 4284, 11718, 22590, 30148, 26517, 13804, 3211
Offset: 0
Examples
1; 1, 2; 1, 4, 5; 1, 6, 14, 11; 1, 8, 27, 42, 25; 1, 10, 44, 101, 119, 56; 1, 12, 65, 196, 342, 322, 126; 1, 14, 90, 335, 770, 1080, 847, 283; 1, 16, 119, 526, 1495 ...
Programs
-
Maple
A188106 := proc(n,k) 1/(1-2*x-x^2+x^3)^(n-k+1) ; coeftayl(%,x=0,k) ; end proc: seq(seq(A188106(n,k),k=0..n),n=0..10) ; # R. J. Mathar, Mar 22 2011
Formula
Extensions
a(43) and following corrected by Georg Fischer, Oct 14 2023
Comments