A221216 T(n,k) = ((n+k)^2-2*(n+k)+4-(3*n+k-2)*(-1)^(n+k))/2; n , k > 0, read by antidiagonals.
1, 5, 6, 4, 3, 2, 12, 13, 14, 15, 11, 10, 9, 8, 7, 23, 24, 25, 26, 27, 28, 22, 21, 20, 19, 18, 17, 16, 38, 39, 40, 41, 42, 43, 44, 45, 37, 36, 35, 34, 33, 32, 31, 30, 29, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 56, 55, 54, 53, 52, 51, 50, 49, 48, 47, 46, 80
Offset: 1
Examples
The start of the sequence as table: 1....5...4..12..11..23..22... 6....3..13..10..24..21..39... 2...14...9..25..20..40..35... 15...8..26..19..41..34..60... 7...27..18..42..33..61..52... 28..17..43..32..62..51..85... 16..44..31..63..50..86..73... . . . The start of the sequence as triangle array read by rows: 1; 5,6; 4,3,2; 12,13,14,15; 11,10,9,8,7; 23,24,25,26,27,28; 22,21,20,19,18,17,16; . . . Row number r consecutive contains r numbers. If r is odd, row is decreasing. If r is even, row is increasing.
Links
- Boris Putievskiy, Rows n = 1..140 of triangle, flattened
- Boris Putievskiy, Transformations [of] Integer Sequences And Pairing Functions arXiv:1212.2732 [math.CO], 2012.
- Eric Weisstein's World of Mathematics, Pairing functions
- Index entries for sequences that are permutations of the natural numbers
Crossrefs
Programs
-
Python
t=int((math.sqrt(8*n-7) - 1)/ 2) i=n-t*(t+1)/2 j=(t*t+3*t+4)/2-n result=((t+2)**2-2*(t+2)+4-(3*i+j-2)*(-1)**t)/2
Comments