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!)
A221215 T(n,k)= ((n+k)^2-2*(n+k)+4-(n+3*k-2)*(-1)^(n+k))/2; n , k > 0, read by antidiagonals. 3

%I #35 Jan 29 2023 02:21:48

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

%T 21,22,45,44,43,42,41,40,39,38,29,30,31,32,33,34,35,36,37,66,65,64,63,

%U 62,61,60,59,58,57,46,47,48,49,50,51,52,53,54,55,56,91

%N T(n,k)= ((n+k)^2-2*(n+k)+4-(n+3*k-2)*(-1)^(n+k))/2; n , k > 0, read by antidiagonals.

%C Permutation of the natural numbers.

%C a(n) is a pairing function: a function that reversibly maps Z^{+} x Z^{+} onto Z^{+}, where Z^{+} is the set of integer positive numbers.

%C Enumeration table T(n,k). Let m be natural number. The order of the list:

%C T(1,1)=1;

%C T(1,3), T(2,2), T(3,1);

%C T(2,1), T(1,2);

%C . . .

%C T(1,2*m+1), T(2,2*m), T(3,2*m-1), ... T(2*m+1,1);

%C T(2*m,1), T(2*m-1,2), T(2*m-2,3),...T(1,2*m);

%C . . .

%C First row contains elements antidiagonal {T(1,2*m+1), ... T(2*m+1,1)}, read downwards.

%C second row contains elements antidiagonal {T(1,2*m), ... T(2*m,1)}, read upwards.

%C The same as A211394, except for reversed order in even diagonals. - _M. F. Hasler_, Feb 26 2013

%H Boris Putievskiy, <a href="/A221215/b221215.txt">Rows n = 1..140 of triangle, flattened</a>

%H Boris Putievskiy, <a href="http://arxiv.org/abs/1212.2732">Transformations [of] Integer Sequences And Pairing Functions</a> arXiv:1212.2732 [math.CO], 2012.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PairingFunction.html">Pairing functions</a>

%H <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>

%F As table

%F T(n,k)= ((n+k)^2-2*(n+k)+4-(n+3*k-2)*(-1)^(n+k))/2.

%F As linear sequence

%F a(n) = (A003057(n)^2-2*A003057(n)+4-(A002260(n)+3*A004736(n)-2)*(-1)^A003056(n))/2; a(n) = ((t+2)^2-2*(t+2)+4-(i+3*j-2)*(-1)^t)/2,

%F where i=n-t*(t+1)/2, j=(t*t+3*t+4)/2-n, t=floor((-1+sqrt(8*n-7))/2).

%e The start of the sequence as table:

%e 1....6...2..15...7..28..16...

%e 5....3..14...8..27..17..44...

%e 4...13...9..26..18..43..31...

%e 12..10..25..19..42..32..63...

%e 11..24..20..41..33..62..50...

%e 23..21..40..34..61..51..86...

%e 22..39..35..60..52..85..73...

%e . . .

%e The start of the sequence as triangle array read by rows:

%e 1;

%e 6,5;

%e 2,3,4;

%e 15,14,13,12;

%e 7,8,9,10,11;

%e 28,27,26,25,24,23;

%e 16,17,18,19,20,21,22;

%e . . .

%e Row number r contains r consecutive numbers.

%e If r is odd, row is increasing.

%e If r is even, row is decreasing.

%t T[n_, k_] := ((n+k)^2 - 2(n+k) + 4 - (n+3k-2)(-1)^(n+k))/2;

%t Table[T[n-k+1, k], {n, 1, 12}, {k, n, 1, -1}] // Flatten (* _Jean-François Alcover_, Jan 05 2019 *)

%o (Python)

%o t=int((math.sqrt(8*n-7) - 1)/ 2)

%o i=n-t*(t+1)/2

%o j=(t*t+3*t+4)/2-n

%o result=((t+2)**2-2*(t+2)+4-(i+3*j-2)*(-1)**t)/2

%Y Cf. A211394, A002260, A004736, A003057.

%K nonn,tabl

%O 1,2

%A _Boris Putievskiy_, Feb 22 2013

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 August 10 09:30 EDT 2024. Contains 375044 sequences. (Running on oeis4.)