login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A275716 Permutation of natural numbers: a(0) = 1, a(1) = 2, a(2n) = A273669(a(n)), a(2n+1) = A273664(a(n)). 6
1, 2, 9, 3, 42, 17, 12, 4, 209, 115, 82, 41, 59, 26, 19, 5, 1042, 801, 572, 444, 409, 283, 202, 57, 292, 180, 129, 48, 92, 31, 22, 6, 5209, 5603, 4002, 4881, 2859, 3106, 2219, 733, 2042, 1977, 1412, 620, 1009, 395, 282, 97, 1459, 1258, 899, 525, 642, 334, 239, 74, 459, 213, 152, 63, 109, 40, 29, 7, 26042, 39217 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Note the indexing: the domain starts from 0, while the range excludes zero.
This sequence can be represented as a binary tree. Each left hand child is obtained by applying A273669(n) when the parent contains n, and each right hand child is obtained by applying A273664 to the parent's contents:
1
|
...................2...................
9 3
42......../ \........17 12......../ \........4
/ \ / \ / \ / \
/ \ / \ / \ / \
/ \ / \ / \ / \
209 115 82 41 59 26 19 5
1042 801 572 444 409 283 202 57 292 180 129 48 92 31 22 6
etc.
LINKS
FORMULA
a(0) = 1, a(1) = 2, a(2n) = A273669(a(n)), a(2n+1) = A273664(a(n)).
As a composition of other permutations:
a(n) = A249824(A163511(n)).
PROG
(Scheme, with memoization-macro definec)
(definec (A275716 n) (cond ((<= n 1) (+ 1 n)) ((even? n) (A273669 (A275716 (/ n 2)))) (else (A273664 (A275716 (/ (- n 1) 2))))))
CROSSREFS
Inverse: A275715.
Related or similar permutations: A163511, A249824, A245612.
Sequence in context: A237860 A088614 A162615 * A295197 A155163 A309929
KEYWORD
nonn,tabf
AUTHOR
Antti Karttunen, Aug 06 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 09:22 EDT 2024. Contains 371905 sequences. (Running on oeis4.)