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 A194900 #5 Mar 30 2012 18:57:44 %S A194900 1,2,3,5,6,4,8,10,7,9,13,15,12,14,11,18,21,17,20,16,19,25,28,24,27,23, %T A194900 26,22,32,36,31,35,30,34,29,33,41,45,40,44,39,43,38,42,37,50,55,49,54, %U A194900 48,53,47,52,46,51,61,66,60,65,59,64,58,63,57,62,56,72,78,71 %N A194900 Rectangular array, by antidiagonals: row n gives the positions of n in the fractal sequence A194899; an interspersion. %C A194900 See A194832 for a general discussion. %e A194900 Northwest corner: %e A194900 1...2...5...8...13..18 %e A194900 3...6...10..15..21..28 %e A194900 4...7...12..17..24..31 %e A194900 9...14..20..27..35..44 %e A194900 11..16..23..30..39..48 %t A194900 r = Sqrt[12]; %t A194900 t[n_] := Table[FractionalPart[k*r], {k, 1, n}]; %t A194900 f = Flatten[Table[Flatten[(Position[t[n], #1] &) /@ %t A194900 Sort[t[n], Less]], {n, 1, 20}]] (* A194899 *) %t A194900 TableForm[Table[Flatten[(Position[t[n], #1] &) /@ %t A194900 Sort[t[n], Less]], {n, 1, 15}]] %t A194900 row[n_] := Position[f, n]; %t A194900 u = TableForm[Table[row[n], {n, 1, 20}]] %t A194900 g[n_, k_] := Part[row[n], k]; %t A194900 p = Flatten[Table[g[k, n - k + 1], {n, 1, 15}, %t A194900 {k, 1, n}]] (* A194900 *) %t A194900 q[n_] := Position[p, n]; Flatten[Table[q[n], %t A194900 {n, 1, 90}]] (* A194901 *) %Y A194900 Cf. A194832, A194899, A194901. %K A194900 nonn,tabl %O A194900 1,2 %A A194900 _Clark Kimberling_, Sep 05 2011