OFFSET
1,2
COMMENTS
Row sums = A132925. Right border = 2^0, 2^1, 2^2, ...
EXAMPLE
First few rows of the triangle:
1;
2, 2;
3, 3, 4;
4, 4, 5, 8;
5, 5, 6, 9, 16;
6, 6, 7, 10, 17, 32;
7, 7, 8, 11, 18, 33, 64;
...
MAPLE
A132924 := proc(n, m) n+2^m-m ; end: seq(seq(A132924(n, m), m=0..n), n=0..13) ; # R. J. Mathar, Oct 23 2009
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 05 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 23 2009
STATUS
approved