A152888 Partial sums of length of terms in A081368 where A081368(1) is set to 0.
0, 2, 5, 9, 14, 21, 28, 36, 45, 55, 66, 77, 90, 104, 119, 135, 152, 170
Offset: 1
References
- C. Pickover, Mazes for the Mind, St. Martin's Press, NY, 1992, p. 350-351.
Programs
-
Mathematica
a = {2, 71, 828, 1828, 45904, 5235360, 2874713, 52662497, 757247093, 6999595749, 66967627724, 76630353547, 5945713821785, 25166427427466, 391932003059921, 8174135966290435, 72900334295260595, 630738132328627943}; b = Table[Length[IntegerDigits[a[[n]]]], {n, 1, Length[a]}]; c = Table[Sum[b[[m]], {m, 1, n}] - 1, {n, 1, Length[b]}] Sum[a[[n]]/10^(c[[n]]), {n, 1, Length[a]}]; N[% - E, 100]
-
PARI
v=[71, 828, 1828, 45904, 5235360, 2874713, 52662497, 757247093, 6999595749, 66967627724, 76630353547, 5945713821785, 25166427427466, 391932003059921, 8174135966290435, 72900334295260595, 630738132328627943]; concat([0],vector(#v,n,sum(j=1,n,#digits(v[j])))) \\ Joerg Arndt, Aug 13 2013
Extensions
Edited by Joerg Arndt and Michel Marcus, Aug 13 2013
Comments