%I #13 May 04 2024 14:29:48
%S 1,3,7,9,13,17,19,23,27,31,33,37,41,45,49,51,55,59,63,67,71,73,77,81,
%T 85,89,93,97,99,103,107,111,115,119,123,127,129,133,137,141,145,149,
%U 153,157,161,163,167,171,175,179,183,187,191,195,199
%N a(n) = 2*A001614(n) - 1 where A001614 lists the Connell numbers.
%C Row sums = A059722: (1, 10, 39, 100, ...).
%C Right border of the triangle = A056220: (1, 7, 17, 31, 49, ...).
%C Left border = A058331: (1, 3, 9, 19, 33, 51, ...).
%C Connell-like triangle read by rows: odd rows are in the set 4n-3, evens are in 4n-1. Leftmost term in the next row is the next higher term consistent with the modular rule.
%C Given A056220: (1, 7, 17, 31, 49, 71, ...) as the rightmost diagonal; the triangle is generated starting from the right: (n-th term of A056220, then (n-1) operations of the trajectory (-4), (-4), (-4), ...
%C Row 3 = (9, 13, 17) since beginning with A056220(3) = 17 as rightmost term, we perform two operations of (-4), -(4)j.
%F a(n) = 2*A001614(n) - 1, where A001614 = the Connell numbers.
%e First few rows of the triangle =
%e 1;
%e 3, 7;
%e 9, 13, 17;
%e 19, 23, 27, 31;
%e 33, 37, 41, 45, 49;
%e 51, 55, 59, 63, 67, 71;
%e ...
%e Examples: a(5) = 13 = 2*A001614(5) - 1, where 7 = A001614(5).
%o (Python)
%o from math import isqrt
%o def A143803(n): return ((m:=n<<1)-(k:=isqrt(m))-int(m>=k*(k+1)+1)<<1)-1 # _Chai Wah Wu_, Aug 01 2022
%Y Cf. A001614, A059722, A056220, A058331.
%K nonn,tabl
%O 1,2
%A _Gary W. Adamson_, Sep 01 2008