A048856 Number of digits of prime(n)# + 1.
1, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 13, 15, 17, 18, 20, 22, 24, 25, 27, 29, 31, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 56, 58, 60, 62, 64, 66, 69, 71, 73, 76, 78, 80, 82, 85, 87, 89, 92, 94, 97, 99, 101, 104, 106, 109, 111, 113, 116, 118, 121, 123, 126, 128
Offset: 1
Links
- H. Ibstedt, A Few Smarandache Integer Sequences, Smarandache Notions Journal, Vol. 8, No. 1-2-3, 1997, pp. 171-183.
Programs
-
Mathematica
prod = 1; Table[prod = prod*Prime[n]; Length[IntegerDigits[prod + 1]], {n, 100}] (* T. D. Noe, May 05 2013 *) IntegerLength/@(FoldList[Times,Prime[Range[70]]]+1) (* Harvey P. Dale, Nov 17 2020 *)
Extensions
Corrected and extended by Arkadiusz Wesolowski, May 04 2013