A295866 Number of decimal digits in the number of partitions of n.
1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8
Offset: 0
References
- D. J. Newman, Analytic number theory, Springer Verlag, 1998, p. 17.
Programs
-
Mathematica
Join[{1}, IntegerLength[PartitionsP[#]] & /@ Range[99]]
-
PARI
a(n) = #digits(numbpart(n)); \\ Michel Marcus, Feb 17 2018
Comments