%I #10 Mar 30 2012 17:25:36
%S 1,2,0,3,1,2,4,2,4,0,5,3,6,2,3,6,4,8,4,6,0,7,5,10,6,9,3,4,8,6,12,8,12,
%T 6,8,0,9,7,14,10,15,9,12,4,5,10,8,16,12,18,12,16,8,10,0,11,9,18,14,21,
%U 15,20,12,15,5,6,12,10,20,16,24,18,24,16,20,10,12,0
%N Triangle in which row n is generated from (1,2,3,...,n) dot (n, n-1,...,1) with subtractive carryovers.
%C The subtractive carryover dot product of two vectors (a(1),a(2),...a(n)) dot (b(1),b(2),..b(n) = (c(1),..,c(n)) is defined by c(1)=a(1)*b(1) and c(i) = a(i)*b(i)-c(i-1), i>1.
%C Row sums = A005993: (1, 2, 6, 10, 19, 28,...)
%C A177877 = analogous triangle with additive carryovers.
%C A160770 = the analogous triangle using the triangular series as the generating vector.
%F By rows, dot product of (1,2,3,...) and (...3,2,1) with subtractive carryovers; such that current row product subtracts previous product.
%e Row 3 = (4, 2, 4, 0) = (1, 2, 3, 4) dot (4, 3, 2, 1) with subtractive carryovers = (4), then (2*3 - 4 = 2), (3*2 - 2 = 4), and (4*1 - 4 = 0).
%e First few rows of the triangle =
%e .
%e 1;
%e 2, 0;
%e 3, 1, 2;
%e 4, 2, 4, 0;
%e 5, 3, 6, 2, 3;
%e 6, 4, 8, 4, 6, 0;
%e 7, 5, 10, 6, 9, 3, 4;
%e 8, 6, 12, 8, 12, 6, 8, 0;
%e 9, 7, 14, 10, 15, 9, 12, 4, 5;
%e 10, 8, 16, 12, 18, 12, 16, 8, 10, 0;
%e 11, 9, 18, 14, 21, 15, 20, 12, 15, 5, 6;
%e 12, 10, 20, 16, 24, 18, 24, 16, 20, 10, 12, 0;
%e ...
%Y Cf. A005993, A177877, A160770
%K nonn,tabl
%O 0,2
%A _Gary W. Adamson_, Dec 13 2010