A182723 Sum of (all parts of) all partitions of prime(n).
4, 9, 35, 105, 616, 1313, 5049, 9310, 28865, 132385, 212102, 800569, 1827903, 2720223, 5863438, 17486343, 49077380, 68411805, 179539163, 333501555, 451555297, 1094043350, 1937092927, 4449637325, 12923400210, 21662593726, 27938641850, 46132984623, 59072140160
Offset: 1
Keywords
Examples
a(6) = 1313 because the 6th prime is 13 and the partition number of 13 is 101, so 13*101=1313.
Programs
-
Maple
A182723 := proc(n) local p; p := ithprime(n) ; p*combinat[numbpart](p) ; end proc: # R. J. Mathar, Jan 31 2011
Comments