login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A194071 Natural interspersion of A194069; a rectangular array, by antidiagonals. 4

%I #5 Mar 30 2012 18:57:39

%S 1,3,2,7,4,5,11,8,9,6,17,12,13,10,15,25,18,19,14,21,16,33,26,27,20,29,

%T 22,23,43,34,35,28,37,30,31,24,55,44,45,36,47,38,39,32,41,67,56,57,46,

%U 59,48,49,40,51,42,81,68,69,58,71,60,61,50,63,52,53,97,82,83

%N Natural interspersion of A194069; a rectangular array, by antidiagonals.

%C See A194029 for definitions of natural fractal sequence and natural interspersion. Every positive integer occurs exactly once (and every pair of rows intersperse), so that as a sequence, A194071 is a permutation of the positive integers; its inverse is A194072.

%e Northwest corner:

%e 1...3...7...11...17

%e 2...4...8...12...18

%e 5...9...13..19...27

%e 6...10..14..20...28

%e 15..21..29..37...47

%t z = 70;

%t c[k_] := 1 + Floor[(2/3) k^2];

%t c = Table[c[k], {k, 1, z}] (* A194069 *)

%t f[n_] := If[MemberQ[c, n], 1, 1 + f[n - 1]]

%t f = Table[f[n], {n, 1, 300}] (* A194070 *)

%t r[n_] := Flatten[Position[f, n]]

%t t[n_, k_] := r[n][[k]]

%t TableForm[Table[t[n, k], {n, 1, 7}, {k, 1, 7}]]

%t p = Flatten[Table[t[k, n - k + 1], {n, 1, 14}, {k, 1, n}]] (* A194071 *)

%t q[n_] := Position[p, n]; Flatten[Table[q[n], {n, 1, 90}]] (* A194072 *)

%Y Cf. A194029, A194069, A194070, A194072.

%K nonn,tabl

%O 1,2

%A _Clark Kimberling_, Aug 14 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 07:26 EDT 2024. Contains 371782 sequences. (Running on oeis4.)