OFFSET
0,2
COMMENTS
An integer sequence as a power of 2 representation of the running average of the primes (with 1 as the zeroth element).
MATHEMATICA
a[0] = 1/2; a[n_] := a[n] = (a[n - 1] + Prime[n])/2; Table[2^(n + 1)*a[n], {n, 0, 27}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Nov 28 2005
EXTENSIONS
More terms from Robert G. Wilson v, Nov 29 2005
STATUS
approved