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 A227632 #4 Jul 19 2013 14:18:20 %S A227632 1,2,5,19,34,61,114,175,1094,1695,3390,9372,15605,116478,220288, %T A227632 455587,552188 %N A227632 Record values in A227617. %C A227632 a(n) = A227617(A227633(n)); %C A227632 A227633(n) = A100707(a(n)). %o A227632 (Haskell) %o A227632 a227632 n = a227632_list !! (n-1) %o A227632 (a227632_list, a227633_list) = unzip $ (1,1) : f 1 1 a227617_list where %o A227632 f i v (q:qs) | q > v = (q,i) : f (i + 1) q qs %o A227632 | otherwise = f (i + 1) v qs %K A227632 nonn,more %O A227632 1,2 %A A227632 _Reinhard Zumkeller_, Jul 19 2013