login
A260741
Permutation of natural numbers: a(1) = 1, for n > 1: a(n) = A255127(A260438(n), a(A260439(n))).
11
1, 2, 3, 4, 9, 6, 5, 8, 7, 18, 15, 12, 11, 10, 13, 16, 21, 14, 19, 36, 17, 30, 51, 24, 23, 22, 31, 20, 33, 26, 25, 32, 29, 42, 27, 28, 37, 38, 35, 72, 45, 34, 41, 60, 55, 102, 39, 48, 43, 46, 47, 44, 105, 62, 73, 40, 59, 66, 87, 52, 49, 50, 53, 64, 69, 58, 61, 84, 67, 54, 63, 56, 71, 74, 77, 76, 57, 70, 83, 144, 125, 90, 75, 68, 101, 82, 89, 120
OFFSET
1,2
COMMENTS
This is a more recursed variant of A260435.
FORMULA
a(1) = 1, for n > 1: a(n) = A255127(A260438(n), a(A260439(n))).
Other identities. For all n >= 1:
a(A000959(n+1)) = A003309(n+2). [Maps Lucky numbers to odd Ludic numbers.]
a(n) = a(2n)/2. [The even bisection halved gives the sequence back.]
PROG
(Scheme, with memoization macro definec)
(definec (A260741 n) (if (<= n 1) n (A255127bi (A260438 n) (A260741 (A260439 n))))) ;; Code for A255127bi given in A255127.
CROSSREFS
Inverse: A260742.
Similar permutations: A260435, A250245, A250246.
Sequence in context: A112095 A260435 A255554 * A091203 A106445 A106443
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jul 30 2015
STATUS
approved