OFFSET
1,2
EXAMPLE
The r-th term of the n-th row of the following array contains the sum of r successively decreasing integers beginning from n. 0<r<=n.
e.g. the row corresponding to 4 contains
4, (3+2),{(1) +(0)+(-1)}, {(-2)+(-3)+(-4)+(-5)} ----> 4,5,0,-14
1
2 1
3 3 -3
4 5 0 -14
5 7 3 -10 -35
Sequence contains the array by rows.
PROG
;; PLT DrScheme (Zucker)
(define (triangle n) (* n (add1 n) 1/2))
(define (A110425 n)
(build-list n (lambda (r) (- (triangle (- n (triangle r)))
(triangle (- n (triangle (add1 r))))))))
CROSSREFS
KEYWORD
AUTHOR
Amarnath Murthy, Aug 01 2005
EXTENSIONS
More terms from Joshua Zucker, May 10 2006
STATUS
approved