A380817 a(n) = A379343(A380245(n)).
1, 2, 3, 4, 5, 6, 9, 10, 7, 8, 11, 12, 13, 14, 15, 20, 21, 18, 19, 16, 17, 22, 23, 24, 25, 26, 27, 28, 35, 36, 33, 34, 31, 32, 29, 30, 37, 38, 39, 40, 41, 42, 43, 44, 45, 54, 55, 52, 53, 50, 51, 48, 49, 46, 47, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 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, 10, 7, 8, 11, 12, 13, 14, 15; For n > 1, each row of triangle array joins two consecutive upward antidiagonals in the table: 1, 3, 6, 8, 15, ... 2, 5, 7, 14, 16, ... 4, 10, 13, 19, 26, ... 9, 12, 18, 25, 31, ... 11, 21, 24, 34, 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, 4, 1, 2, 5, 6, 7, 8, 9. All permutations are self-inverse.
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 (D4 (I)).
- Boris Putievskiy, The Direct Product D4xC2: Subgroups and the Cayley Table.
- 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
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 + m + 1 if k < m and k == 0 (mod 2), P(n,k) = k if k >= m, where m = 2*n - 1.
Extensions
Name corrected by Pontus von Brömssen, Jun 24 2025
Comments