OFFSET
1,1
LINKS
Harry J. Smith, Table of n, a(n) for n=1..1000
FORMULA
a(n) = C*n*log(n) asymptotically with C=1.9...
If the digits are supposed equidistributed, a(n)=9/(2*log(10))*n*log(n) asymptotically, where 9/(2log(10))=1.9543251685... - Benoit Cloitre, Jan 05 2002
MATHEMATICA
Table[ Apply[ Plus, IntegerDigits[ Product[ Prime[i], {i, 1, n} ]]], {n, 1, 55} ]
PROG
(PARI) SumD(x)= { local(s=0); while (x>9, s+=x%10; x\=10); return(s + x) } { p=1; for (n=1, 1000, p*=prime(n); s=SumD(p); write("b066098.txt", n, " ", s) ) } \\ Harry J. Smith, Nov 13 2009
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Benoit Cloitre, Dec 30 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 31 2001
OFFSET changed from 0,1 to 1,1 by Harry J. Smith, Nov 13 2009
STATUS
approved