A133128 Triangle of first differences of A120070 with a leftmost column of A002522.
2, 5, -3, 10, -3, -5, 17, -3, -5, -7, 26, -3, -5, -7, -9, 37, -3, -5, -7, -9, -11, 50, -3, -5, -7, -9, -11, -13, 65, -3, -5, -7, -9, -11, -13, -15, 82, -3, -5, -7, -9, -11, -13, -15, -17, 101, -3, -5, -7, -9, -11, -13, -15, -17, -19, 122, -3, -5, -7, -9, -11, -13, -15, -17, -19, -21, 145, -3, -5, -7, -9, -11, -13, -15, -17, -19, -21, -23, 170, -3, -5, -7, -9, -11, -13
Offset: 0
Examples
The triangle starts 2; 5, -3; 10,-3,-5; 17,-3,-5,-7; 26,-3,-5,-7,-9;
Programs
-
Maple
A133128 := proc(n,m) if m>= 1 then -2*m-1 ; else (n+1)^2+1 ; fi; end: seq(seq(A133128(n,m),m=0..n),n=0..15) ; # R. J. Mathar, Nov 22 2009
Formula
Extensions
Edited and extended by R. J. Mathar, Nov 22 2009
Comments