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

A058702
a(n) = p(n) if n <= 4 else p(a(n-1)), where p = partition numbers A000041.
1
1, 1, 2, 3, 5, 7, 15, 176, 476715857290
OFFSET
0,3
MAPLE
A058702 := proc(n) option remember; if n<=4 then A000041(n) else A000041(A058702(n-1)); fi; end;
CROSSREFS
Sequence in context: A335203 A079987 A085547 * A235152 A363720 A024377
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 31 2000
EXTENSIONS
The next term is too large to include.
STATUS
approved