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 A064745 #17 Jul 13 2013 12:02:40 %S A064745 1,2,4,6,8,3,10,12,14,16,18,5,20,22,24,26,28,30,32,7,34,36,38,40,42, %T A064745 44,46,48,50,52,54,56,58,60,9,62,64,66,68,70,72,74,76,78,80,82,84,86, %U A064745 88,90,92,94,96,98,100,11,102,104,106,108,110,112,114,116,118,120,122,124 %N A064745 Inverse permutation to A064736. %H A064745 Reinhard Zumkeller, <a href="/A064745/b064745.txt">Table of n, a(n) for n = 1..10000</a> %H A064745 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a> %t A064745 max = 124; ClearAll[a, b]; A064736 = {a[1]=1, a[2]=2}; a[n_] := a[n] = (an = If[OddQ[n], a[n-1]*a[n+1], First[ Complement[ Range[n], A064736]]]; AppendTo[A064736, an]; an); Do[b[a[n]] = n, {n, 1, max}]; A064745 = Table[b[n], {n, 1, a[max]}] (* _Jean-François Alcover_, Aug 07 2012 *) %o A064745 (Haskell) %o A064745 import Data.List (elemIndex) %o A064745 import Data.Maybe (fromJust) %o A064745 a064745 n = fromJust (elemIndex n a064736_list) + 1 %o A064745 -- _Reinhard Zumkeller_, Mar 23 2012 %K A064745 nonn,easy %O A064745 1,2 %A A064745 _N. J. A. Sloane_, Oct 21 2001 %E A064745 More terms from _Vladeta Jovovic_, Oct 21 2001