A344743 Number of integer partitions of 2n with reverse-alternating sum < 0.
0, 0, 1, 3, 7, 15, 29, 54, 96, 165, 275, 449, 716, 1123, 1732, 2635, 3955, 5871, 8620, 12536, 18065, 25821, 36617, 51560, 72105, 100204, 138417, 190134, 259772, 353134, 477734, 643354, 862604, 1151773, 1531738, 2029305, 2678650, 3523378, 4618835, 6035240, 7861292
Offset: 0
Keywords
Examples
The a(2) = 1 through a(5) = 15 partitions: (31) (42) (53) (64) (51) (62) (73) (3111) (71) (82) (3221) (91) (4211) (3331) (5111) (4222) (311111) (4321) (5221) (5311) (6211) (7111) (322111) (421111) (511111) (31111111)
Crossrefs
Programs
-
Mathematica
sats[y_] := Sum[(-1)^(i - Length[y])*y[[i]], {i, Length[y]}]; Table[Length[Select[IntegerPartitions[n],sats[#]<0&]],{n,0,30,2}]
Extensions
More terms from Bert Dobbelaere, Jun 12 2021
Comments