OFFSET
0,3
LINKS
Reinhard Zumkeller, Rows n = 0..125 of triangle, flattened
FORMULA
We let A061084 = the diagonal of an infinite matrix, M. Perform P*M and extract the zeros, where P = Pascal's triangle as an infinite lower triangular matrix.
EXAMPLE
First few rows of the triangle are:
1;
1, 2;
1, 4, -1;
1, 6, -3, 3;
1, 8, -6, 12, -4;
1, 10, -10, 30, -20, 7;
1, 12, -15, 60, -60, 42, -11;
1, 14, -21, 105, -140, 147, -77, 18;
...
PROG
(Haskell)
import Data.List (inits)
a124844 n k = a124844_tabl !! n !! k
a124844_row n = a124844_tabl !! n
a124844_tabl = zipWith (zipWith (*))
a007318_tabl $ tail $ inits a061084_list
-- Reinhard Zumkeller, Sep 15 2015
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Nov 10 2006
STATUS
approved