login
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