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!)
A237739 a(0) = 1, a(2n) = nthcomposite(a(n)-1), a(2n+1) = nthprime(a(n)), where nthcomposite = A002808, nthprime = A000040. 5

%I #12 Apr 04 2015 17:47:01

%S 1,2,4,3,8,7,6,5,14,19,12,17,10,13,9,11,22,43,28,67,20,37,26,59,16,29,

%T 21,41,15,23,18,31,33,79,60,191,40,107,91,331,30,71,52,157,38,101,81,

%U 277,25,53,42,109,32,73,57,179,24,47,34,83,27,61,45,127,48

%N a(0) = 1, a(2n) = nthcomposite(a(n)-1), a(2n+1) = nthprime(a(n)), where nthcomposite = A002808, nthprime = A000040.

%C A071574(a(n)) = n; a(A071574(n)) = n for n > 0.

%H Reinhard Zumkeller (terms 0-300) & Antti Karttunen, <a href="/A237739/b237739.txt">Table of n, a(n) for n = 0..4095</a>

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

%F a(0) = 1, a(2n) = nthcomposite(a(n)-1), a(2n+1) = nthprime(a(n)), where nthcomposite = A002808, nthprime = A000040. - _Antti Karttunen_, Apr 04 2015

%o (Haskell)

%o import Data.List (elemIndex); import Data.Maybe (fromJust)

%o a237739 = fromIntegral . (+ 1) . fromJust . (`elemIndex` a071574_list)

%o (PARI)

%o default(primelimit,(2^31)+(2^30));

%o A002808(n) = { my(k=-1); while( -n + n += -k + k=primepi(n), ); n }; \\ This function from _M. F. Hasler_

%o A237739(n) = if(0==n, 1, if(!(n%2), A002808(A237739(n/2)-1), prime(A237739((n-1)/2))));

%o for(n=0, 4095, write("b237739.txt", n, " ", A237739(n)));

%o \\ _Antti Karttunen_, Apr 04 2015

%o (Scheme, with memoizing definec-macro)

%o (definec (A237739 n) (cond ((zero? n) 1) ((odd? n) (A000040 (A237739 (/ (- n 1) 2)))) (else (A002808 (+ -1 (A237739 (/ n 2)))))))

%o ;; _Antti Karttunen_, Apr 04 2015

%Y Inverse: A071574.

%Y Cf. A000040, A002808.

%Y Compare also to the permutation A246378.

%K nonn,look

%O 0,2

%A _Reinhard Zumkeller_, Apr 30 2014

%E Name replaced by an explicit recurrence. - _Antti Karttunen_, Apr 04 2015

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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)