OFFSET
0,3
COMMENTS
a(n) is also the number of endofunctions on the partitions of n. - Max Sills, Feb 07 2012
FORMULA
a(n) = p(n)^p(n).
EXAMPLE
a(5) = 823543 because p(5) = 7 and we can write 823543 = 7^7 or 823543 = 7*7*7*7*7*7*7.
MAPLE
a:= n-> (p-> p^p)(combinat[numbpart](n)):
seq(a(n), n=0..11); # Alois P. Heinz, Nov 04 2024
MATHEMATICA
Table[ PartitionsP@n ^ PartitionsP@n, {n, 10}] (* Robert G. Wilson v, Aug 28 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Aug 24 2007
EXTENSIONS
More terms from Robert G. Wilson v, Aug 28 2007
a(0)=1 prepended by Alois P. Heinz, Nov 04 2024
STATUS
approved