cp's OEIS Frontend

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.

A194860 Rectangular array, by antidiagonals: row n gives the positions of n in the fractal sequence A194859; an interspersion.

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