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 A194103 #6 Mar 30 2012 18:57:39 %S A194103 1,2,1,2,3,4,1,2,3,4,5,1,2,3,4,5,6,7,1,2,3,4,5,6,7,8,1,2,3,4,5,6,7,8, %T A194103 9,1,2,3,4,5,6,7,8,9,10,11,1,2,3,4,5,6,7,8,9,10,11,12,1,2,3,4,5,6,7,8, %U A194103 9,10,11,12,13,14,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,1,2,3,4 %N A194103 Natural fractal sequence of A194102. %C A194103 See A194029 for definitions of natural fractal sequence and natural interspersion. %t A194103 z = 40; g = Sqrt[2]; %t A194103 c[k_] := Sum[Floor[j*g], {j, 1, k}]; %t A194103 c = Table[c[k], {k, 1, z}] (* A194102 *) %t A194103 f[n_] := If[MemberQ[c, n], 1, 1 + f[n - 1]] %t A194103 f = Table[f[n], {n, 1, 800}] (* A194103 new *) %t A194103 r[n_] := Flatten[Position[f, n]] %t A194103 t[n_, k_] := r[n][[k]] %t A194103 TableForm[Table[t[n, k], {n, 1, 8}, {k, 1, 7}]] %t A194103 p = Flatten[Table[t[k, n - k + 1], {n, 1, 16}, {k, 1, n}]] (* A194104 *) %t A194103 q[n_] := Position[p, n]; Flatten[Table[q[n], {n, 1, 80}]] (* A194105 *) %Y A194103 Cf. A194029, A194102, A194104, A001951. %K A194103 nonn %O A194103 1,2 %A A194103 _Clark Kimberling_, Aug 15 2011