OFFSET
0,2
COMMENTS
Conjecture: except for n = 2, 5, and 6, the rows have length equal to 1.
EXAMPLE
The irregular triangle begins:
0;
2;
4, 5;
7;
12;
16, 17;
22, 24;
32;
42;
53;
65;
...
MATHEMATICA
b[n_]:=CoefficientList[Product[Sum[x^Prime[i], {i, k}], {k, n}], x]; Table[Position[b[n], Max[b[n]]]-1, {n, 0, 50}]//Flatten
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Stefano Spezia, Dec 27 2022
STATUS
approved