login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A167214 a(n) = (sum of first n primes) * n. 2
2, 10, 30, 68, 140, 246, 406, 616, 900, 1290, 1760, 2364, 3094, 3934, 4920, 6096, 7480, 9018, 10792, 12780, 14952, 17402, 20102, 23112, 26500, 30186, 34128, 38388, 42920, 47790, 53320, 59232, 65604, 72318, 79660, 87372, 95608, 104386, 113646, 123480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) has the asymptotic expression a(n) ~ n^3 * log(n) / 2.
LINKS
Asymptotic Expression for a(n) is a direct extension of asymptotic expression for A007504(n).
FORMULA
a(n) = n*A007504(n). - R. J. Mathar, Oct 31 2009
MAPLE
A007504 := proc(n) add(ithprime(i), i=1..n) ; end: A167214 := proc(n) n*A007504(n) ; end: seq(A167214(n), n=1..80) ; # R. J. Mathar, Oct 31 2009
seq(n*add(ithprime(j), j = 1 .. n), n = 1 .. 40); # Emeric Deutsch, Nov 01 2009
MATHEMATICA
s=0; Table[s=s+Prime[n]; s*n, {n, 50}]
CROSSREFS
Sequence in context: A065137 A034262 A180499 * A034827 A328532 A051667
KEYWORD
nonn,easy
AUTHOR
Pratik Poddar, Oct 30 2009
EXTENSIONS
More terms from R. J. Mathar and Emeric Deutsch, Oct 31 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)