OFFSET
0,3
COMMENTS
Conjecture: except for the values 2, 4 and 6, this sequence includes all the nonnegative integers.
LINKS
Christoph Koutschan, Ali K. Uncu, and Elaine Wong, A Unified Approach to Unimodality of Gaussian Polynomials, arXiv:2302.04067 [cs.SC], 2023.
MATHEMATICA
a={}; For[n=0, n<=68, n++, k=0; While[PartitionsP[k+1]-PartitionsP[k]<n, k++]; AppendTo[a, k]]; a
PROG
(PARI) a(n) = my(k=0); while (numbpart(k+1) - numbpart(k) < n, k++); k; \\ Michel Marcus, Feb 15 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Stefano Spezia, Feb 14 2023
STATUS
approved