OFFSET
0,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..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) a(n) = { sumdigits(vecprod(primes(n))) } \\ 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 to 1 by Harry J. Smith, Nov 13 2009
a(0)=1 prepended by Alois P. Heinz, Dec 14 2024
STATUS
approved