The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A088489 For each pair of twin primes (p,p+2) take the absolute value of the difference between p and p with digits reversed. 0
0, 0, 0, 54, 63, 27, 36, 54, 0, 594, 594, 792, 792, 0, 594, 495, 693, 693, 99, 198, 396, 495, 297, 297, 396, 396, 396, 99, 495, 297, 99, 693, 99, 99, 693, 8082, 270, 8352, 540, 810, 360, 7992, 6444, 8532, 270, 7812, 5814, 90, 360, 6354, 5454, 7542, 5994 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
9 divides each term.
LINKS
EXAMPLE
(17, 19) is a pair of twin primes. The absolute value of 17 - 71 is in the sequence.
MATHEMATICA
a={}; For[n=1, n<268, n++, If[Prime[n+1]-Prime[n]==2, AppendTo[a, Abs[Prime[n] -FromDigits[Reverse[IntegerDigits[Prime[n]]]]]]]]; a
PROG
(PARI) revdiff(n) = { forprime(x=1, n, if(isprime(x+2), a=vector(x); x1=x; z=0; ln=length(Str(x1)); for(y=1, ln, a[y] = x1%10; x1=floor(x1/10); ); for(y=1, ln, z += a[y]*10^(ln-y); ); print1(abs(z-x)" "); ) ) }
CROSSREFS
Sequence in context: A095501 A318235 A158989 * A025331 A025323 A157934
KEYWORD
base,nonn,less
AUTHOR
Cino Hilliard, Nov 09 2003
EXTENSIONS
Edited by Stefan Steinerberger, Jun 12 2007
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 May 15 02:15 EDT 2024. Contains 372536 sequences. (Running on oeis4.)