A076050 Limiting sequence if we start with 2 and successively replace n with 2,3,4,...,n,n+1.
2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 4, 5, 6, 2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 4, 5, 6, 2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4, 5, 2, 3, 2, 3, 4, 2, 3
Offset: 1
Examples
From _John M. Campbell_, Sep 07 2018: (Start) There are A000108(3) = 5 Young tableaux of shape (2^3) = (2, 2, 2), which are listed below lexicographically. [3 6] [4 6] [4 6] [5 6] [5 6] [2 5] < [2 5] < [3 5] < [2 4] < [3 4] [1 4] [1 3] [1 2] [1 3] [1 2] As above, let (T(1), T(2), ..., T(5)) denote this list. The first label of disagreement between T(1) and T(5) is 2; that between T(1) and T(4) is 3; that between T(1) and T(3) is 2; that between T(1) and T(2) is 3. The sequence (2, 3, 2, 3) agrees with the first 4 terms in this sequence. If we repeat this process using Young tableaux of shape (2^4), we obtain the sequence (2, 3, 2, 3, 4, 2, 3, 2, 3, 4, 2, 3, 4). (End)
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- Italo J. Dejter, The role of restricted growth strings in the two middle levels of the Boolean lattice B_(2k+1), University of Puerto Rico, 2018.
- Italo J. Dejter, Reinterpreting Mütze's Theorem via Natural Enumeration of Ordered Rooted Trees, arXiv:1911.02100 [math.CO], 2019.
Programs
-
Haskell
a076050 n = a076050_list !! (n-1) a076050_list = 2 : f [2] where f xs = (drop (length xs) xs') ++ (f xs') where xs' = concatMap ((enumFromTo 2) . (+ 1)) xs -- Reinhard Zumkeller, Feb 17 2012
-
Mathematica
Nest[Flatten[Map[Range[2, #+1] &, #]] &, {2}, 5] (* Paolo Xausa, Mar 04 2024 *)
-
PARI
a(n)=local(v,w); if(n<1,0,v=[1]; while(#v
Formula
a(n) = A007001(n) + 1.
Comments