OFFSET
1,7
LINKS
K. Banerjee and M. G. Dastidar, Inequalities for the partition function arising from truncated theta series, RISC Report Series No. 22-20, 2023. See Corollary 1.4 at p. 2.
EXAMPLE
The triangle begins:
0;
1, -1;
1, 0, 0;
2, -1, 1, -1;
2, 0, 0, 0, 0;
4, -2, 2, -2, 2, -2;
4, 0, 0, 0, 0, 0, 0;
7, -2, 2, -2, 2, -2, 2, -2;
8, 0, 0, 0, 0, 0, 0, 0, 0;
12, -2, 3, -3, 3, -3, 3, -3, 3, -3;
14, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0;
...
MATHEMATICA
T[n_, k_]:=(-1)^(k-1)*Sum[(-1)^j*(PartitionsP[n-j(2j+1)]-PartitionsP[n-(j+1)(2j+1)]), {j, 0, k-1}]; Flatten[Table[T[n, k], {n, 1, 12}, {k, 1, n}]]
CROSSREFS
KEYWORD
sign,tabl
AUTHOR
Stefano Spezia, Aug 12 2023
STATUS
approved