login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Position of n in row n of McGarvey's array; see A007062.
1

%I #9 Aug 26 2019 08:39:40

%S 1,1,6,4,5,11,2,22,13,15,30,4,23,11,12,58,43,45,68,28,97,37,8,64,35,

%T 95,66,10,105,21,82,54,55,155,196,126,171,93,142,184,27,235,16,290,

%U 157,65,124,18,81,131,72,288,239,243,304,36,375,209,144,276,211

%N Position of n in row n of McGarvey's array; see A007062.

%e McGarvey's array (from A007062):

%e 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

%e 2 1 4 3 6 5 8 7 10 9 12 11 14 13 16 15 18 17 20 19

%e 4 1 2 5 6 3 10 7 8 11 12 9 16 13 14 17 18 15 22 19

%e 5 2 1 4 7 10 3 6 9 12 11 8 17 14 13 16 19 22 15 18

%e 7 4 1 2 5 12 8 6 3 10 13 14 17 8 11 18 15 22 19 16

%e 12 5 2 1 4 7 14 13 10 3 6 8 22 15 18 11 8 17 24 23

%e 14 7 4 1 2 5 12 15 22 8 6 3 10 13 20 23 24 17 8 11

%e 15 12 5 2 1 4 7 14 23 20 13 10 3 6 8 22 25 28 31 18

%e In row 3, the entry 3 occurs in position 6, so that a(3) = 6.

%t s[0] = Range[10000]; s[n_] := Flatten[Map[Reverse, Partition[s[n - 1], n]]];

%t Flatten[Table[Position[s[n], n], {n, 1, 500}]]

%Y Cf. A007062.

%K nonn,easy

%O 1,3

%A _Clark Kimberling_, Aug 25 2019