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”).

A058228
Numbers k that divide the difference between the sum of the first k partition numbers (A000041) and the sum of the first k unique partition numbers (A000009).
0
1, 24, 29, 289, 499, 6424, 589665, 689090
OFFSET
1,2
COMMENTS
Next term, if it exists, is greater than 2000000. - Vaclav Kotesovec, May 05 2018
MATHEMATICA
s = 0; Do[ s = s + PartitionsP[ n ] - PartitionsQ[ n ]; If[ Mod[ s, n ] == 0, Print[ n ] ], {n, 1, 53100} ]
CROSSREFS
Cf. A000041 and A000009.
Sequence in context: A045668 A045659 A319901 * A093455 A080564 A048260
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 15 2001
EXTENSIONS
Wrong term 38974 removed by Vaclav Kotesovec, May 05 2018
a(7)-a(8) from Vaclav Kotesovec, May 05 2018
STATUS
approved