OFFSET
0,1
COMMENTS
a(6) is too large to include (even in a b-file).
a(6) = 26680 54494 90278 28685 82404 ... {769101 digits} ... 72432 87250 16775 65100 60652. - Robert G. Wilson v, Sep 30 2009
MAPLE
a:= n-> `if`(n=0, 4, combinat[numbpart](a(n-1))):
seq(a(n), n=0..5); # Alois P. Heinz, Apr 05 2021
MATHEMATICA
NestList[PartitionsP, 4, 5]
PROG
(Python)
from itertools import accumulate
from sympy.ntheory import npartitions
def f(an, _): return npartitions(an)
print(list(accumulate([4]*6, f))) # Michael S. Branicky, Apr 05 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Jeff Burch, Jul 04 2002
EXTENSIONS
Edited by N. J. A. Sloane, May 05 2007
STATUS
approved