A131422 (A000012 * A127773) + (A127773 * A000012) - A000012.
1, 3, 5, 6, 8, 11, 10, 12, 15, 19, 15, 17, 20, 24, 29, 21, 23, 26, 30, 35, 41, 28, 30, 33, 37, 42, 48, 55, 36, 38, 41, 45, 50, 56, 63, 71, 45, 47, 50, 54, 59, 65, 72, 80, 89, 55, 57, 60, 64, 69, 75, 82, 90, 99, 109
Offset: 1
Examples
First few rows of the triangle are: 1; 3, 5; 6, 8, 11; 10, 12, 15, 19; 15, 17, 20, 24, 29; 21, 23, 26, 30, 35, 41; 28, 30, 33, 37, 42, 48, 55; ...
Programs
-
Maple
T:=proc(n,k) options operator, arrow: (1/2)*n*(n+1)+(1/2)*k*(k+1)-1 end proc: for n to 10 do seq(T(n,k),k=1..n) end do; # yields sequence in triangular form - Emeric Deutsch, Sep 06 2008
Comments