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 A119629 #11 Dec 19 2015 16:10:30 %S A119629 1,2,3,4,6,5,10,13,17,7,25,30,36,42,8,54,61,69,78,9,11,104,115,126, %T A119629 138,150,163,14,189,203,218,233,249,265,12,18,315,333,352,371,391,411, %U A119629 432,453,21,496,519,542,566,590,615,640,666,692,26,15,771,799,828,857,887 %N A119629 Inverse permutation to sequence A014631. %H A119629 Reinhard Zumkeller, <a href="/A119629/b119629.txt">Table of n, a(n) for n = 1..1000</a> %t A119629 lst = {1}; t = Flatten[Table[Binomial[n, m], {n, 16}, {m, Floor[n/2]}]]; Do[ If[ !MemberQ[lst, t[[n]]], AppendTo[lst, t[[n]] ]], {n, Length@t}]; Flatten@Table[ Position[lst, n], {n, 61}] (* _Robert G. Wilson v_ *) %o A119629 (Haskell) %o A119629 import Data.List (elemIndex); import Data.Maybe (fromJust) %o A119629 a119629 = (+ 1) . fromJust . (`elemIndex` a014631_list) %o A119629 -- _Reinhard Zumkeller_, Dec 18 2015 %Y A119629 Cf. A014631. %Y A119629 Cf. A265912. %K A119629 nonn %O A119629 1,2 %A A119629 _Leroy Quet_, Jun 08 2006 %E A119629 More terms from _Robert G. Wilson v_, Jun 08 2006