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!)
A194034 Natural interspersion of A028387, a rectangular array, by antidiagonals. 3

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

%S 1,5,2,11,6,3,19,12,7,4,29,20,13,8,9,41,30,21,14,15,10,55,42,31,22,23,

%T 16,17,71,56,43,32,33,24,25,18,89,72,57,44,45,34,35,26,27,109,90,73,

%U 58,59,46,47,36,37,28,131,110,91,74,75,60,61,48,49,38,39,155,132

%N Natural interspersion of A028387, 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, A194034 is a permutation of the positive integers; its inverse is A194035.

%e Northwest corner:

%e 1...5...11...19...29...41

%e 2...6...12...20...30...42

%e 3...7...13...21...31...43

%e 4...8...14...22...32...44

%e 9...15..23...33...45...59

%t z = 30;

%t c[k_] := k^2 + k - 1;

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

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

%t f = Table[f[n], {n, 1, 255}] (* A074294 *)

%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, 13}, {k, 1, n}]] (* A194034 *)

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

%Y Cf. A194029, A194035.

%K nonn,tabl

%O 1,2

%A _Clark Kimberling_, Aug 12 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 25 14:06 EDT 2024. Contains 371987 sequences. (Running on oeis4.)