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”).

A265348
Inverse permutation to A265347.
2
1, 2, 3, 4, 10, 5, 6, 7, 15, 9, 55, 8, 28, 44, 66, 11, 91, 20, 36, 13, 21, 14, 210, 12, 45, 35, 105, 19, 406, 27, 190, 22, 435, 230, 703, 26, 253, 299, 78, 18, 1711, 170, 325, 76, 741, 54, 496, 17, 136, 377, 528, 43, 820, 119, 276, 25, 153, 65, 2145, 34, 300, 209, 120, 16, 1596, 77, 231, 64, 1128, 104, 1770, 33, 351, 275, 171, 53, 2775, 90, 378, 24, 861
OFFSET
1,2
FORMULA
a(n) = (1/2) * ((c+r)^2 - r - 3*c + 2), where c = A265331(n), and r = A265911(n).
PROG
(Scheme) (define (A265348 n) (let ((row (A265911 n)) (col (A265331 n))) (* (/ 1 2) (- (expt (+ row col) 2) row col col col -2))))
CROSSREFS
Inverse: A265347.
Sequence in context: A082865 A359996 A368222 * A158929 A255479 A256618
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 18 2015
STATUS
approved