A143804 Triangle read by rows, thrice the Connell numbers (A001614) - 2.
1, 4, 10, 13, 19, 25, 28, 34, 40, 46, 49, 55, 61, 67, 73, 76, 82, 88, 94, 100, 106, 109, 115, 121, 127, 133, 139, 145, 148, 154, 160, 166, 172, 178, 184, 190, 193, 199, 205, 211, 217, 223, 229, 235, 241, 244, 250, 256, 262, 268, 274, 280, 286, 292, 298
Offset: 1
Examples
First few rows of the triangle: 1; 4, 10; 13, 19, 25; 28, 34, 40, 46; 49, 55, 61, 67, 73; 76, 82, 88, 94, 100, 106; ...
Programs
-
Python
from math import isqrt def A143804(n): return 3*((m:=n<<1)-(k:=isqrt(m))-int(m>=k*(k+1)+1))-2 # Chai Wah Wu, Aug 01 2022
Formula
a(n) = 3*A001614(n) - 2.
Comments