OFFSET
0,3
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..20
FORMULA
a(n) = n^A000041(n).
EXAMPLE
a(6)=362797056 because the partition number of 6 is 11 and 6^11 = 362797056.
MAPLE
with(combinat): seq(n^numbpart(n), n=0..11); # Emeric Deutsch, Nov 24 2007
MATHEMATICA
Table[n^(PartitionsP[n]), {n, 0, 20}] (* G. C. Greubel, Oct 02 2017 *)
PROG
(PARI) for(n=0, 20, print1(n^(numbpart(n)), ", ")) \\ G. C. Greubel, Oct 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Oct 31 2007
EXTENSIONS
More terms from Emeric Deutsch, Nov 24 2007
STATUS
approved