OFFSET
1,3
COMMENTS
This is one way to define an inverse to A000217. - R. J. Mathar, Apr 30 2010
EXAMPLE
First few rows of the triangle are:
1;
-1, 2;
-1, -1, 3;
-1, -1, -1, 4;
...
MAPLE
A127949 := proc(n) if issqr(1+8*n) then (sqrt(1+8*n)-1)/2 ; else -1 ; end if; end proc: seq(A127949(n), n=1..120) ; # R. J. Mathar, Apr 30 2010
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Feb 09 2007
EXTENSIONS
More terms from R. J. Mathar, Apr 30 2010
STATUS
approved