A381662 a(n) = A378684(A380200(n)).
1, 2, 3, 4, 5, 6, 9, 8, 7, 10, 11, 14, 13, 12, 15, 20, 17, 18, 19, 16, 21, 22, 27, 24, 25, 26, 23, 28, 35, 30, 33, 32, 31, 34, 29, 36, 37, 44, 39, 42, 41, 40, 43, 38, 45, 54, 47, 52, 49, 50, 51, 48, 53, 46, 55, 56, 65, 58, 63, 60, 61, 62, 59, 64, 57, 66
Offset: 1
Examples
Triangle array begins: k= 1 2 3 4 5 6 7 8 9 n=1: 1; n=2: 2, 3, 4, 5, 6; n=3: 9, 8, 7, 10, 11, 14, 13, 12, 15; (1,2,3,...,12,15) = (1,2,3,...,12,15)^(-1). (1,2,3,...,12,15) = (1,5,2,...,8,15) (1,3,5,...,9,15). The first permutation is from Example A379342 and the second from Example A379343. For n > 1, each row of triangle array joins two consecutive upward antidiagonals in the table: 1, 3, 6, 10, 15, ... 2, 5, 7, 12, 16, ... 4, 8, 13, 19, 26, ... 9, 14, 18, 25, 31, ... 11, 17, 24, 32, 41, ... ... Subtracting (n-1)*(2*n-3) from each term in row n produces a permutation of numbers from 1 to 4*n-3: 1; 1, 2, 3, 4, 5; 3, 2, 1, 4, 5, 8, 7, 6, 9.
Links
- Boris Putievskiy, Table of n, a(n) for n = 1..9730
- Boris Putievskiy, Integer Sequences: Irregular Arrays and Intra-Block Permutations, arXiv:2310.18466 [math.CO], 2023.
- Boris Putievskiy, The Alternating Group A4: Subgroups and the Cayley Table (2025).
- Boris Putievskiy, The Dihedral Group D4 (I): Subgroups and the Cayley Table (2025 D4 (I)).
- Boris Putievskiy, The Direct Product D4xC2: Subgroups and the Cayley Table(2025 D4xC2).
- Groupprops, Subgroup structure of direct product of D8 and Z2.
- Eric Weisstein's World of Mathematics, Alternating Group.
- Eric Weisstein's World of Mathematics, Dihedral Group D_4.
- Index entries for sequences that are permutations of the natural numbers.
Crossrefs
Programs
-
Mathematica
T[n_,k_]:=(n-1)*(2*n-3)+Module[{m=2*n-1},If[k
Formula
T(n,k) for 1 <= k <= 4n - 3: T(n,k) = A000384(n-1) + P(n,k), P(n,k) = - k + m - 1 if k < m and k == 1 (mod 2), P(n,k) = k if k < m and k == 0 (mod 2), P(n,k) = k if k >= m and k == 1 (mod 2), P(n,k) = -k + 3 * m - 1 if k >= m and k == 0 (mod 2), where m = 2n - 1.
Extensions
Name corrected by Pontus von Brömssen, Jun 24 2025
Comments