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!)
A106738 Difference between the sums of odd-indexed primes and even-indexed primes up to and including index 10^n. 1
13, 251, 4031, 52017, 652039, 7746369, 89721621, 1019145113, 11401770915, 126048548239 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = Sum2 - Sum1, where Sum1 = prime(1) + prime(3) + ... + prime(10^n-1), and Sum2 = prime(2) + prime(4) + ... + prime(10^n).
a(n) = Sum_{i=1..10^n} (-1)^i*A000040(i). - R. J. Mathar, Feb 13 2008
a(n) = A077133(10^n/2). - Amiram Eldar, Jul 02 2024
MAPLE
A106738 := proc(n) local a, i ; a :=0 ; for i from 1 to 10^n do a := a+(-1)^i*ithprime(i) ; od: RETURN(a) ; end: for n from 1 do print(A106738(n)) ; od: # R. J. Mathar, Feb 13 2008
MATHEMATICA
a[n_] := Module[{a = 0}, For[i = 1, i <= 10^n, i++, a = a + (-1)^i*Prime[i]]; a]; Table[Print[an = a[n]]; an, {n, 1, 8}] (* Jean-François Alcover, Dec 17 2012, after R. J. Mathar *)
PROG
(PARI) lista(pmax) = {my(pow = 10, k = 0, s = 0); forprime(p = 1, pmax, k++; s += ((-1)^k * p); if(k == pow, print1(s, ", "); pow *= 10)); } \\ Amiram Eldar, Jul 02 2024
CROSSREFS
Sequence in context: A183416 A126422 A286878 * A332849 A001508 A157946
KEYWORD
nonn,more
AUTHOR
Cino Hilliard, May 15 2005
EXTENSIONS
Edited by R. J. Mathar, Feb 13 2008
a(7)-a(8) from Donovan Johnson, Nov 30 2008
a(9)-a(10) from Amiram Eldar, Jul 02 2024
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 August 25 04:00 EDT 2024. Contains 375420 sequences. (Running on oeis4.)