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!)
A140263 Permutation of nonnegative integers obtained by interleaving A117967 and A117968. 8

%I #19 Jun 07 2017 05:25:39

%S 0,1,2,5,7,3,6,4,8,17,22,15,21,16,23,11,19,9,18,10,20,14,25,12,24,13,

%T 26,53,67,51,66,52,68,47,64,45,63,46,65,50,70,48,69,49,71,35,58,33,57,

%U 34,59,29,55,27,54,28,56,32,61,30,60,31,62,44,76,42,75,43,77,38,73,36

%N Permutation of nonnegative integers obtained by interleaving A117967 and A117968.

%H A. Karttunen, <a href="/A140263/b140263.txt">Table of n, a(n) for n = 0..2186</a>

%H <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>

%F a(n) = A117967(A001057(n)). (Assuming that the domain of A117967 is the whole Z line.)

%o (Python)

%o from sympy import ceiling

%o from sympy.ntheory.factor_ import digits

%o def a004488(n): return int("".join([str((3 - i)%3) for i in digits(n, 3)[1:]]), 3)

%o def a117968(n):

%o if n==1: return 2

%o if n%3==0: return 3*a117968(n/3)

%o elif n%3==1: return 3*a117968((n - 1)/3) + 2

%o else: return 3*a117968((n + 1)/3) + 1

%o def a117967(n): return 0 if n==0 else a117968(-n) if n<0 else a004488(a117968(n))

%o def a001057(n): return -(-1)**n*ceiling(n/2)

%o def a(n): return a117967(a001057(n)) # _Indranil Ghosh_, Jun 07 2017

%Y Inverse: A140264. Bisections: A117967 & A117968. a(n) = A140265(n+1)-1.

%Y Cf. A004488, A117966.

%K nonn,look,hear

%O 0,3

%A _Antti Karttunen_, May 19 2008, originally described in a posting at the SeqFan mailing list on Sep 15 2005.

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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)