OFFSET
1,1
COMMENTS
Are there numbers for which (k + R(k)) / (k - R(k)) is a number other than 11?
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..44
EXAMPLE
(5994 + 4995) /(5994 - 4995) = 10989/999 = 11, so 5994 is in the sequence.
MATHEMATICA
dr11Q[n_]:=Module[{dr=FromDigits[Reverse[IntegerDigits[n]]]}, n!=dr && Abs[(n+dr)/(n-dr)]==11]; Select[Range[45100000], dr11Q] (* Harvey P. Dale, Oct 03 2011 *)
PROG
(PARI) { n=0; for (m=1, 10^9, x=m; r=0; while (x>0, d=x-10*(x\10); x\=10; r=r*10 + d); if ((m + r) == 11*abs(m - r), write("b062390.txt", n++, " ", m); if (n==44, break)) ) } \\ Harry J. Smith, Aug 07 2009
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Amarnath Murthy, Jun 27 2001
EXTENSIONS
Corrected formula and more terms from Jason Earls, Jun 29 2001
Definition corrected and incorrect formula deleted by Harry J. Smith, Aug 06 2009
Missing terms adding like a(5) = 4545 by Harry J. Smith, Aug 07 2009
STATUS
approved