This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A237427 #36 May 06 2025 21:52:50 %S A237427 0,1,3,7,2,15,6,5,14,4,30,31,12,13,10,28,8,11,60,62,24,26,20,29,56,9, %T A237427 16,22,120,61,124,48,52,40,58,112,18,63,32,44,240,25,122,27,248,96, %U A237427 104,21,80,116,224,36,126,57,64,88,480,50,244,54,496,17,192,208,42 %N A237427 a(0)=0, a(1)=1; thereafter, if n is k-th ludic number [i.e., n = A003309(k)], a(n) = 1 + (2*a(k-1)); otherwise, when n is k-th nonludic number [i.e., n = A192607(k)], a(n) = 2*a(k). %C A237427 Shares with permutation A237058 the property that all odd numbers occur in positions given by ludic numbers (A003309: 1, 2, 3, 5, 7, 11, 13, 17, ...), while the even numbers > 0 occur in positions given by nonludic numbers (A192607: 4, 6, 8, 9, 10, 12, 14, 15, 16, ...). However, instead of placing terms into those positions in monotone order this sequence recursively permutes the order of both subsets with the emerging permutation itself, so this is a kind of "deep" variant of A237058. %C A237427 Alternatively, this can be viewed as yet another "entanglement permutation", where two pairs of complementary subsets of natural numbers are entangled with each other. In this case a complementary pair ludic/nonludic numbers (A003309/A192607) is entangled with a complementary pair odd/even numbers (A005408/A005843). %C A237427 Because 2 is the only even ludic number, it implies that, apart from a(2)=3, odd numbers occur in odd positions only (along with many even numbers that also occur in odd positions). %H A237427 Antti Karttunen, <a href="/A237427/b237427.txt">Table of n, a(n) for n = 0..10000</a> %H A237427 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a> %F A237427 a(0)=0, a(1)=1; thereafter, if A192490(n) = 1 [i.e., n is ludic], a(n) = 1+(2*a(A192512(n)-1)); otherwise a(n) = 2*a(A236863(n)) [where A192512 and A236863 give the number of ludic and nonludic numbers <= n, respectively]. %e A237427 For n=2, with 2 being the second ludic number (= A003309(2)), the value is computed as 1+(2*a(2-1)) = 1+2*a(1) = 1+2 = 3, thus a(2)=3. %e A237427 For n=3, with 3 being the third ludic number (= A003309(3)), the value is computed as 1+(2*a(3-1)) = 1+2*a(2) = 1+2*3 = 7, thus a(3)=7. %e A237427 For n=4, with 4 being the first nonludic number (= A192607(1)), the value is computed as 2*a(1) = 2 = a(4). %e A237427 For n=5, with 5 being the fourth ludic number (= A003309(4)), the value is computed as 1+(2*a(4-1)) = 1+2*a(3) = 1+2*7 = 15 = a(5). %e A237427 For n=9, with 9 being the fourth nonludic number (= A192607(4)), the value is computed as 2*a(4) = 2*2 = 4 = a(9). %t A237427 nmax = 100; %t A237427 T = Range[2, nmax+7]; %t A237427 L = {1}; %t A237427 While[Length[T] > 0, With[{k = First[T]}, %t A237427 AppendTo[L, k]; T = Drop[T, {1, -1, k}]]]; %t A237427 nonL = Complement[Range[Last[L]], L]; %t A237427 a[n_] := a[n] = Module[{k}, Which[ %t A237427 n < 2, n, %t A237427 IntegerQ[k = FirstPosition[L, n][[1]]], 1 + 2 a[k-1], %t A237427 IntegerQ[k = FirstPosition[nonL, n][[1]]], 2 a[k], %t A237427 True , Print[" error: n = ", n]]]; %t A237427 Table[a[n], {n, 0, nmax}] (* _Jean-François Alcover_, Oct 10 2021, after _Ray Chandler_ in A003309 *) %o A237427 (Haskell) %o A237427 import Data.List (elemIndex); import Data.Maybe (fromJust) %o A237427 a237427 = (+ 1) . fromJust . (`elemIndex` a237126_list) %o A237427 (Scheme) %o A237427 ;; With Antti Karttunen's IntSeq-library for memoizing definec-macro. %o A237427 (definec (A237427 n) (cond ((< n 2) n) ((= 1 (A192490 n)) (+ 1 (* 2 (A237427 (- (A192512 n) 1))))) (else (* 2 (A237427 (A236863 n)))))) %o A237427 ;; _Antti Karttunen_, Feb 07 2014 %Y A237427 Inverse permutation of A237126. %Y A237427 Similar permutations: A135141/A227413, A243287/A243288, A243343-A243346. %Y A237427 Cf. A003309, A192607, A192490, A192512, A236863. %K A237427 nonn,look %O A237427 0,3 %A A237427 _Antti Karttunen_ and _Reinhard Zumkeller_, Feb 07 2014