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.

A351468 Irregular triangle read by rows where row n is Newey's sequence containing all permutations of 1..n.

Original entry on oeis.org

1, 2, 1, 2, 1, 2, 3, 1, 2, 1, 3, 1, 2, 3, 4, 1, 2, 3, 1, 4, 2, 1, 3, 1, 2, 3, 4, 5, 1, 2, 3, 4, 1, 5, 2, 3, 1, 4, 5, 2, 1, 3, 1, 2, 3, 4, 5, 6, 1, 2, 3, 4, 5, 1, 6, 2, 3, 4, 1, 5, 6, 2, 3, 1, 4, 5, 6, 2, 1, 3
Offset: 2

Views

Author

Kevin Ryde, Feb 23 2022

Keywords

Comments

Row n contains n^2 - 2*n + 4 = A117950(n-1) terms, numbered as columns k >= 1. Row n contains within it all permutations of 1..n as subsequences. These subsequences need not be consecutive terms (and in general are not).
Newey's construction (section 6) is an initial 1..n then successive term 1 and n-2 terms from a rotating block of 2..n. The effect is term 1 at k=1, k=n+1, then steps n-1 apart, and the rest filled with repeating 2..n.
Koutas and Hu (equation (1)) form the same by blocks D_k(m|n) which start with 1 and then appropriate parts of rotated 2..n like Newey.
Jon E. Schoenfield in A062714 starts from repeated 2..n and inserts 1's.
For n = 3 to 7, Newey shows these sequences are as short as possible (A062714) for any sequence containing all permutations, and noted the "obvious" conjecture that maybe they would be shortest always. But this is not so, since Jon E. Schoenfield gives a shorter n=16 in A062714, and Radomirovic constructs shorter for all n >= 10.

Examples

			Triangle begins
  n=2:  1,2,1,2
  n=3:  1,2,3,1,2,1,3
  n=4:  1,2,3,4,1,2,3,1,4,2,1,3
  n=5:  1,2,3,4,5,1,2,3,4,1,5,2,3,1,4,5,2,1,3
For row n=3, the permutations of 1,2,3 are located within the row as follows (some are present in multiple ways too).
   1,2,3,1,2,1,3     row n=3
   1-2-3             \
   1---3---2         | all permutations
           2-1-3     | of 1,2,3 within
     2-3-1           | row n=3
       3-1-2         |
       3---2-1       /
For row n=4, see example in A062714.
For row n=5, the pattern of 1's among repeating 2..5 is
    2,3,4,5,  2,3,4,  5,2,3,  4,5,2,  3
  1,        1,      1,      1,      1,
   \-------/ \-----/ \-----/ \-----/
    5 apart,   thereafter 4 apart
		

Crossrefs

Cf. A117950 (row lengths), A062714 (shortest possible).
Cf. A351469 (Adelman's sequences).

Programs

  • PARI
    T(n,k) = if(k<=n,k, my(q,r);[q,r]=divrem(k-2,n-1); if(r==0&&q
    				
  • PARI
    row(n) = my(r=1,t=1); vector((n-1)^2+3,i, if(i==1,1, r++>n,r=1+(n>2);1, if(t++>n,t=2, t)));

Formula

T(n,k) = k for 1 <= k <= n, otherwise.
T(n,k) = 1 if r=0 and q
T(n,k) = 2 + ((r-q) mod (n-1)),
where division q = floor((k-2)/(n-1)) remainder r = (k-2) mod (n-1). [Adapted from Jon E. Schoenfield in A062714.]