A219795 Sum of the absolute values of the antidiagonals of the triangle A135929(n) companion. See the comment.
2, 2, 2, 2, 3, 3, 5, 7, 10, 11, 16, 23, 33, 44, 58, 81, 114, 158, 212, 293, 407, 565, 777, 1064, 1471, 2036, 2813, 3863, 5334, 7370, 10183, 14046, 19356, 26726, 36909, 50955, 70251, 96977, 133886, 184841, 255092
Offset: 0
Keywords
Examples
a(0)=2, a(1)=2, a(2)=2+0, a(3)=2+0, a(4)=2+0+1, a(5)=2+0+1.
Programs
-
Maple
A219795 := proc(n) if n=0 then 2; else add(abs(A192011(n-k,k)),k=0..floor(n/2)) ; end if; end proc: # R. J. Mathar, Jan 06 2013
Formula
a(n) = sum abs ( [k=0..floor(n/2)] A192011(n-k,k) ), a(0)=2.
Extensions
a(24)-a(40) from Jean-Francois Alcover, Nov 28 2012
Comments