login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A286316
Number of partitions of n with parts differing by at least two and with an odd number of parts.
3
0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 4, 5, 6, 8, 9, 11, 13, 15, 17, 20, 22, 25, 28, 32, 35, 40, 44, 50, 56, 63, 70, 80, 89, 101, 113, 128, 143, 162, 181, 204, 228, 256, 285, 320, 355, 396, 439, 489, 540, 599, 660, 730, 803, 886, 972, 1070, 1172, 1287, 1408, 1544, 1686, 1846, 2014, 2202, 2400, 2621, 2854, 3114, 3389, 3693, 4016, 4374, 4753, 5172, 5617, 6107, 6628, 7201, 7810
OFFSET
0,10
LINKS
FORMULA
a(n) = A003114(n) - A286041(n).
a(n) ~ phi^(1/2) * exp(2*Pi*sqrt(n/15)) / (4 * 3^(1/4) * 5^(1/2) * n^(3/4)), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio. - Vaclav Kotesovec, Mar 05 2020
MATHEMATICA
Table[Length@
Select[IntegerPartitions@n, Min[-Differences@#] > 1 && OddQ@Length@# &], {n, 80}]
CROSSREFS
KEYWORD
nonn
AUTHOR
George Beck, May 06 2017
EXTENSIONS
a(0)=0 prepended by Alois P. Heinz, May 07 2017
STATUS
approved