login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A127468
Triangle read by rows: matrix product A127466*A054525.
2
1, 0, 2, -3, 0, 6, 0, -4, 0, 8, -15, 0, 0, 0, 20, 0, -6, 0, 0, 0, 12, -35, 0, 0, 0, 0, 0, 42, 0, -8, 0, -16, 0, 0, 0, 32, -9, 0, -36, 0, 0, 0, 0, 0, 54, 0, -30, 0, 0, 0, 0, 0, 0, 0, 40, -99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 0, 12, 0, -24, 0, -24, 0, 0, 0, 0, 0, 48
OFFSET
1,3
COMMENTS
The row sums are n, the index of the row.
FORMULA
T(n,k) = sum_{j=k..n} A127466(n,j) * A054525(j,k).
T(n,n) = A002618(n).
EXAMPLE
First few rows of the triangle are:
1;
0, 2;
-3, 0, 6;
0, -4, 0, 8;
-15, 0, 0, 0, 20;
0, -6, 0, 0, 0, 12;
-35, 0, 0, 0, 0, 0, 42;
...
MAPLE
A127468 := proc(n, k)
add( A127466(n, j)*A054525(j, k), j=k..n) ;
end proc: # R. J. Mathar, Sep 06 2013
CROSSREFS
KEYWORD
tabl,sign
AUTHOR
Gary W. Adamson, Jan 15 2007
STATUS
approved