OFFSET
1,1
COMMENTS
Numbers of the form (j+2l)*(2l-j+1)/2 with j>=1 and 2l>j. Subsequences are A014105 where >=3, (j=1), A014107 where >=9 (j=2). - R. J. Mathar, Jul 14 2012
EXAMPLE
3=1+2, 7=3+4, 9=2+3+4, 10=1+2+3+4, 11=5+6,..
MATHEMATICA
z=200; lst2={}; Do[c=a; Do[c+=b; If[c<=2*z, AppendTo[lst2, c]], {b, a-1, 1, -1}], {a, 2, z, 2}]; Union@lst2
With[{upto=108}, Select[Union[Flatten[Table[Accumulate[Range[2n-1, 1, -1]]+ 2n, {n, upto/4}]]], #<=upto&]] (* Harvey P. Dale, May 19 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, May 12 2010
STATUS
approved