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.

A098281 Back-to-front insertion-permutation sequence.

This page as a plain text file.
%I A098281 #16 Sep 02 2021 13:44:38
%S A098281 1,1,2,2,1,1,2,3,1,3,2,3,1,2,2,1,3,2,3,1,3,2,1,1,2,3,4,1,2,4,3,1,4,2,
%T A098281 3,4,1,2,3,1,3,2,4,1,3,4,2,1,4,3,2,4,1,3,2,3,1,2,4,3,1,4,2,3,4,1,2,4,
%U A098281 3,1,2,2,1,3,4,2,1,4,3,2,4,1,3,4,2,1,3,2,3,1,4,2,3,4,1,2,4,3,1,4,2,3,1,3,2,1,4,3,2,4,1,3,4,2,1,4,3,2,1
%N A098281 Back-to-front insertion-permutation sequence.
%C A098281 Contains every finite sequence of distinct numbers infinitely many times.
%F A098281 Write 1. Then place 2 after 1 and then 2 before 1, yielding 12 and 21, as well as the first 5 terms of the sequence. Next, generate the 6 permutations of 1, 2, 3 by inserting 3 into 12 and then 21, from back-to-front, like this: 123, 132, 312 then 213, 231, 321. Next, generate the 24 permutations of 1, 2, 3, 4 by inserting 4 into the permutations of 1, 2, 3. Continue forever.
%e A098281 The permutations can be written as
%e A098281 1,
%e A098281 12, 21,
%e A098281 123, 132, 312, 213, 231, 321, etc.
%e A098281 Write them in order and insert commas.
%t A098281 perms[n_] := perms[n] = If[n == 1, {{1}}, Flatten[Table[Insert[#, n, pos], {pos, -1, -n, -1}]& /@ perms[n-1], 1]];
%t A098281 Table[perms[n], {n, 1, 4}] // Flatten (* _Jean-François Alcover_, Sep 02 2021 *)
%o A098281 (PARI) tabf(nn) = my(v=[[1]], w); print(v); for(n=2, nn, w=List([]); for(k=1, #v, for(i=1, n, listput(w, concat([v[k][1..n-i], n, v[k][n-i+1..n-1]])))); print(Vec(v=w))); \\ _Jinyuan Wang_, Aug 31 2021
%Y A098281 Cf. A030298, A098280.
%K A098281 nonn,tabf
%O A098281 1,3
%A A098281 _Clark Kimberling_, Sep 01 2004