A370282
Coefficient of x^n in the expansion of 1/( (1-x)^3 - x )^n.
Original entry on oeis.org
1, 4, 42, 499, 6250, 80634, 1060269, 14127852, 190102482, 2577310285, 35150819132, 481734467955, 6628611532621, 91517611501008, 1267182734325900, 17589579427715124, 244689432718144770, 3410399867585709501, 47613678409439712861, 665756829352248572725
Offset: 0
-
a(n) = sum(k=0, n, binomial(n+k-1, k)*binomial(4*n+2*k-1, n-k));
A124040
Triangle read by rows: characteristic polynomials of certain matrices, see Mathematica program.
Original entry on oeis.org
3, 3, -1, 8, -6, 1, 20, -24, 9, -1, 45, -84, 50, -12, 1, 125, -275, 225, -85, 15, -1, 320, -864, 900, -468, 129, -18, 1, 845, -2639, 3339, -2219, 840, -182, 21, -1, 2205, -7896, 11756, -9528, 4610, -1368, 244, -24, 1, 5780, -23256, 39825, -38121, 22518, -8532, 2079, -315, 27, -1, 15125, -67650, 130975, -144660, 101065, -46746, 14525, -3000, 395, -30, 1
Offset: 1
Triangle begins:
3;
3, -1;
8, -6, 1;
20, -24, 9, -1;
45, -84, 50, -12, 1;
125, -275, 225, -85, 15, -1;
320, -864, 900, -468, 129, -18, 1;
845, -2639, 3339, -2219, 840, -182, 21, -1;
2205, -7896, 11756, -9528, 4610, -1368, 244, -24, 1;
5780, -23256, 39825, -38121, 22518, -8532, 2079, -315, 27, -1;
-
T[n_, m_, d_]:= If[n==m, 3, If[n==m-1 || n==m+1, 1, If[(n==1 && m==d) || (n==d && m==1), 1, 0]]];
M[d_]:= Table[T[n, m, d], {n,d}, {m,d}];
Join[{M[1]}, Table[CoefficientList[Det[M[d] - x*IdentityMatrix[d]], x], {d,12}]]
Showing 1-2 of 2 results.
Comments