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!)
A195144 Reversal of n equals the sum of the reversals of the anti-divisors of n. 2
5, 8, 895799 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Like A069942 but using anti-divisors. No other terms up to 3*10^10.
LINKS
EXAMPLE
The first two terms are banal cases: anti-divisors of 5 are 2 and 3 and their reversals are again 5, 2 and 3 and 2+3 = 5. The same for 8: 3+5 = 8. Anti-divisors of 895799 are 2, 3, 199, 597, 3001, 9003, 597199 and 2+3+991+795+1003+3009+991795 = 997598.
MAPLE
Rev:=proc(n)
local a, i, k;
i:=convert(n, base, 10); a:=0;
for k from 1 to nops(i) do a:=a*10+i[k]; od;
a;
end:
P:=proc(j)
local h, m, n, r;
for m from 3 to j do
h:=0;
for r from 2 to m-1 do
if abs((m mod r)-r/2)<1 then h:=h+Rev(r); print(r); fi;
od;
if h=Rev(m) then print(m); fi;
od;
end:
P(1000000);
CROSSREFS
Sequence in context: A155214 A028934 A297559 * A175997 A249205 A344966
KEYWORD
nonn,hard,base,bref,more
AUTHOR
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 April 25 10:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)