login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A257506
Inverse permutation to A257505.
3
1, 3, 6, 2, 10, 15, 21, 28, 36, 45, 55, 5, 66, 78, 91, 9, 105, 4, 120, 136, 153, 14, 171, 190, 210, 231, 253, 276, 300, 325, 351, 378, 406, 435, 465, 496, 528, 561, 595, 630, 666, 703, 741, 780, 820, 861, 903, 20, 946, 990, 1035, 27, 1081, 1128, 1176, 1225, 1275, 1326, 1378, 35, 1431, 1485, 1540, 44, 1596, 54, 1653, 1711, 1770, 65, 1830, 8
OFFSET
1,2
FORMULA
a(n) = (1/2) * ((c+r)^2 - r - 3*c + 2), where r = A257681(n), and c = A257679(n).
PROG
(Scheme) (define (A257506 n) (let ((row (A257681 n)) (col (A257679 n))) (* (/ 1 2) (- (expt (+ row col) 2) row col col col -2))))
CROSSREFS
Inverse: A257505.
Sequence in context: A210187 A364365 A210189 * A210035 A210199 A268717
KEYWORD
nonn
AUTHOR
Antti Karttunen, May 06 2015
STATUS
approved