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

A244983
Permutation of natural numbers: a(1) = 1, a(n) = (1 + A122111(A070003(n-1))) / 2.
7
1, 2, 3, 5, 4, 8, 14, 13, 6, 11, 41, 23, 18, 7, 17, 38, 25, 68, 32, 28, 122, 63, 9, 20, 113, 53, 39, 365, 95, 50, 33, 74, 203, 61, 188, 88, 10, 26, 1094, 158, 83, 46, 608, 313, 3281, 338, 123, 149, 59, 43, 221, 116, 284, 72, 263, 138, 1013, 12, 9842, 29, 1823, 248, 98, 563, 172, 60
OFFSET
1,2
FORMULA
a(1) = 1, a(n) = (1 + A122111(A070003(n-1))) / 2.
For all n >= 1, a(A244986(n+1)) = A006254(n).
PROG
(Scheme) (define (A244983 n) (if (= 1 n) 1 (/ (+ 1 (A122111 (A070003 (- n 1)))) 2)))
CROSSREFS
Inverse: A244984.
Related or similar permutations: A122111, A244981-A244982, A243505-A243506, A243065-A243066.
Sequence in context: A245608 A244154 A182395 * A059450 A255972 A060000
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 21 2014
STATUS
approved