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!)
A197422 Primes of the form sum_{j=1..n} (-1)^j *prime(j)*prime(j+1). 1
1103, 9281, 10949, 12157, 26921, 48757, 61949, 87407, 92459, 95923, 124087, 162859, 198811, 289417, 363809, 467183, 530983, 754981, 792307, 830677, 1124051, 1537373, 1662307, 1706251, 1830401, 2023183, 2507963, 2534879, 3358099, 3616721, 3912901, 3929707 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
We select primes in the alternating partial sums of A006094 (which start -6, 9, -26, 51, -92, 129, -194, 243,...).
The corresponding values of n are 14, 32, 34, 36, 50, 64, 70, 80,...
LINKS
EXAMPLE
For n = 14, a(1) = 1103 = - 2*3 + 3*5 - 5*7 + ....+ 43*47 where 43 = prime(14) and 47 = prime(15).
MAPLE
p:=0:for n from 1 to 500 do:p:=p+((-1)^n)* ithprime(n)*ithprime(n+1):if type(p, prime)=true then printf(`%d, `, p): else fi:od:
MATHEMATICA
Select[Accumulate[Times@@@Partition[Riffle[Times@@@Partition[ Prime[ Range[ 500]], 2, 1], {-1, 1}, {2, -1, 2}], 2]], PrimeQ] (* Harvey P. Dale, Feb 17 2015 *)
CROSSREFS
Cf. A197421.
Sequence in context: A271431 A272754 A060519 * A291134 A233563 A127308
KEYWORD
nonn
AUTHOR
Michel Lagneau, Oct 14 2011
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 19 05:02 EDT 2024. Contains 371782 sequences. (Running on oeis4.)