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!)
A102552 a(n) = prime(n)-(prime(n+1)+prime(n-1))/2. 2
0, -1, 1, -1, 1, -1, -1, 2, -2, 1, 1, -1, -1, 0, 2, -2, 1, 1, -2, 1, -1, -1, 2, 1, -1, 1, -1, -5, 5, -1, 2, -4, 4, -2, 0, 1, -1, 0, 2, -4, 4, -1, 1, -5, 0, 4, 1, -1, -1, 2, -4, 2, 0, 0, 2, -2, 1, 1, -4, -2, 5, 1, -1, -5, 4, -2, 4, -1, -1, -1, 1, 0, 1, -1, -1, 2, -2, -1, 4, -4, 4, -2, 1, -1, -1, 2, 1, -1, -4, 2, 2, -2, 2, -1, -3, 5, -8, 6, -2, 2, 0, 2, -2 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,8
REFERENCES
Eric Weisstein, CRC Concise Encyclopedia of Mathematics, 1998, page 1321.
LINKS
FORMULA
a(n) = -(1/2)*(A001223(n+1)-A001223(n))
a(n) = -A036263(n-1)/2. - T. D. Noe, Oct 06 2006 [corrected by Georg Fischer, Oct 19 2023]
EXAMPLE
a(6)=-1 because 13-(17+11)/2=-1.
MAPLE
a:=n->ithprime(n)-(ithprime(n+1)+ithprime(n-1))/2: seq(a(n), n=3..95); # Emeric Deutsch, Mar 02 2005
MATHEMATICA
f[n_] := Prime[n] - (Prime[n - 1] + Prime[n + 1])/2; Table[f[n], {n, 3, 107}] (* Robert G. Wilson v, Sep 25 2006 *)
#[[2]]-(#[[1]]+#[[3]])/2&/@Partition[Prime[Range[2, 110]], 3, 1] (* Harvey P. Dale, Sep 21 2013 *)
PROG
(PARI) a(n) = prime(n)-(prime(n+1)+prime(n-1))/2;
vector(100, n, a(n+2)) \\ Joerg Arndt, Jan 20 2015
CROSSREFS
Sequence in context: A054534 A085769 A237422 * A131341 A124034 A332029
KEYWORD
sign
AUTHOR
Yasutoshi Kohmoto, Feb 25 2005
EXTENSIONS
More terms from Emeric Deutsch, Mar 02 2005
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 March 29 10:22 EDT 2024. Contains 371268 sequences. (Running on oeis4.)