A217613 Absolute value of difference between the n-th "emirpimes" A097393(n) and its reversal.
36, 36, 54, 45, 36, 27, 36, 27, 54, 45, 396, 99, 198, 792, 198, 396, 693, 792, 792, 594, 693, 198, 396, 594, 99, 297, 99, 396, 297, 693, 99, 99, 594, 198, 297, 396, 594, 198, 594, 198, 198, 198, 99, 495, 99, 99, 297, 99, 297, 297, 396, 99, 198, 297
Offset: 1
Examples
a(1) = absolute value of first emirpimes versus its reversal = |15 - 51| = |-36| = 36. a(2) = |26 - 62| = |-36| = 36. a(3) = |39 - 93| = |-54| = 54. a(4) = |49 - 94| = |-45| = 45.
Links
- Post, Jonathan Vos, Emirpimes. From MathWorld--A Wolfram Web Resource, created by Eric W. Weisstein.
Programs
-
Mathematica
Abs[#-IntegerReverse[#]]&/@Select[Range[800],!PalindromeQ[#]&&PrimeOmega[ #] == PrimeOmega[IntegerReverse[#]]==2&] (* Harvey P. Dale, Mar 11 2023 *)
Comments