OFFSET
1,1
COMMENTS
Each row of A014410 is extended by adding an infinite sequence of zeros,
and the binomial transform of this extended row (assuming the first term has index 0) is placed into the array here.
EXAMPLE
First few rows of the array:
2, 2, 2, 2, 2, ... (binomial transform of 2,0,0,0,0,...)
3, 6, 9, 12, 15, ... (binomial transform of 3,3,0,0,0,...)
4, 10, 20, 34, 52, ... (binomial transform of 4,6,4,0,0,...)
5, 15, 35, 70, 125, ...
MAPLE
read("transforms") ; A014410 := proc(n, m) if m <= n-1 and m >= 1 then binomial(n, m) ; else 0 ; end if; end proc:
for d from 1 to 20 do for m from 0 to d-1 do printf("%d, ", A118978(d-m, m)) ; end do: printf("\n") ; end do; # R. J. Mathar, Jun 15 2010
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, May 07 2006
EXTENSIONS
Edited and extended by R. J. Mathar, Jun 15 2010
STATUS
approved