A111295 Number of partitions of 3n+1.
1, 5, 15, 42, 101, 231, 490, 1002, 1958, 3718, 6842, 12310, 21637, 37338, 63261, 105558, 173525, 281589, 451276, 715220, 1121505, 1741630, 2679689, 4087968, 6185689, 9289091, 13848650, 20506255, 30167357, 44108109, 64112359, 92669720, 133230930, 190569292
Offset: 0
Keywords
Examples
If n=25 then P(3*25 + 1) = 9289091.
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..10000
Programs
-
Mathematica
Table[PartitionsP[3 n + 1], {n, 0, 10}]
-
PARI
a(n) = numbpart(3*n+1); \\ Michel Marcus, Mar 04 2014
Formula
Extensions
Better name from Clark Kimberling, Mar 02 2014
Comments