OFFSET
0,3
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..5000
FORMULA
a(n) = A000041(n)^3.
a(n) ~ exp(Pi*sqrt(6*n)) / (192*sqrt(3)*n^3). - Vaclav Kotesovec, Dec 01 2015
EXAMPLE
a(10) = 74088 because the partition number of 10 is 42 and 42^3 is 74088.
MATHEMATICA
Table[PartitionsP[n]^3, {n, 0, 40}] (* Vaclav Kotesovec, Dec 01 2015 *)
PROG
(Haskell)
a133042 = (^ 3) . a000041 -- Reinhard Zumkeller, Nov 15 2015
(PARI) for(n=0, 20, print1(numbpart(n)^3, ", ")) \\ G. C. Greubel, Oct 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Oct 30 2007
STATUS
approved