login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A373067
Number of partitions of n such that (smallest part) >= 2*(number of parts).
4
1, 0, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 8, 8, 10, 11, 13, 14, 17, 18, 21, 23, 26, 28, 32, 34, 39, 42, 47, 51, 58, 62, 70, 76, 85, 92, 103, 111, 124, 134, 148, 160, 177, 190, 210, 226, 248, 267, 293, 315, 345, 371, 405, 436, 476, 511, 557, 599, 651, 700, 760, 816
OFFSET
0,9
FORMULA
G.f.: Sum_{k>=0} x^(2*k^2)/Product_{j=1..k} (1-x^j).
PROG
(PARI) my(N=70, x='x+O('x^N)); Vec(sum(k=0, N, x^(2*k^2)/prod(j=1, k, 1-x^j)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 22 2024
STATUS
approved