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

A347607
Number of partitions of n^n.
4
1, 1, 5, 3010, 365749566870782, 8630901377559029573671524821295260243701883575513498104067
OFFSET
0,3
COMMENTS
The next term a(6) = 1.30449952...*10^235 is too large to include.
a(7) = 1.5782589391...*10^1004. - Chai Wah Wu, Sep 09 2021
LINKS
FORMULA
a(n) = A000041(n^n).
MAPLE
a:= n-> combinat[numbpart](n^n):
seq(a(n), n=0..6); # Alois P. Heinz, Sep 09 2021
PROG
(PARI) a(n) = numbpart(n^n);
(Python)
from sympy.functions import partition
def A347607(n): return partition(n**n) # Chai Wah Wu, Sep 09 2021
CROSSREFS
Main diagonal of A347615.
Sequence in context: A060345 A361450 A171980 * A013782 A137841 A204940
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 08 2021
STATUS
approved