|
|
A251810
|
|
Numbers n such that if m = reverse(sigma(n)-n) then n = reverse(sigma(m)-m).
|
|
0
|
|
|
6, 741, 973, 4056, 4296, 41642, 49222, 425822, 457042, 498906, 831805, 998462, 20671542, 41673714, 73687923, 4158499614, 54809993252, 67820167555
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
Fixed points of the transform n -> reverse(sigma(reverse(sigma(n)-n))- reverse(sigma(n)-n)).
|
|
LINKS
|
|
|
EXAMPLE
|
sigma(741)-741 = 379 and reverse(379)=973;
sigma(973)-973 = 147 and reverse(147)=741;
|
|
MAPLE
|
with(numtheory): T:=proc(w) local x, y, z; x:=0; y:=w;
for z from 1 to ilog10(w)+1 do x:=10*x+(y mod 10); y:=trunc(y/10); od; x; end:
P:=proc(q) local a, b, k, n;
for n from 1 to q do if n=T(sigma(T(sigma(n)-n))-T(sigma(n)-n)) then
print(n); fi; od; end: P(10^12);
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,base,more
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|