login
A133032
a(n) = n^p(n), where p(n) is the partition number of n.
1
0, 1, 4, 27, 1024, 78125, 362797056, 4747561509943, 73786976294838206464, 42391158275216203514294433201, 1000000000000000000000000000000000000000000
OFFSET
0,3
LINKS
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
Cf. A132641. Partition numbers: A000041.
Sequence in context: A362838 A068327 A066842 * A271385 A347146 A110763
KEYWORD
nonn
AUTHOR
Omar E. Pol, Oct 31 2007
EXTENSIONS
More terms from Emeric Deutsch, Nov 24 2007
STATUS
approved