login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A360635 a(n) is the smallest nonnegative integer that satisfies p(a(n)+1) - p(a(n)) >= n, where p denotes the number partition function. 0
0, 1, 3, 5, 5, 7, 7, 7, 8, 9, 9, 9, 9, 10, 10, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 17, 17 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A175767 A111800 A190136 * A126611 A164019 A307701
KEYWORD
nonn
AUTHOR
Stefano Spezia, Feb 14 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 9 18:14 EDT 2024. Contains 375044 sequences. (Running on oeis4.)