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!)
A250067 Numbers n such that n = Rev(sigma*(n)), where sigma*(n) is the sum of the anti-divisors of n and Rev(n) is the reverse of n. 0
5, 8, 64, 614, 47678, 4442395 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
Anti-divisors of 5 are 2, 3 and 2 + 3 = 5 = Rev(5).
Anti-divisors of 614 are 3, 4, 409 and 3 + 4 + 409 = 416 = Rev(614).
MAPLE
with(numtheory):T:=proc(w) local x, y, z; x:=w; y:=0;
for z from 1 to ilog10(x)+1 do y:=10*y+(x mod 10); x:=trunc(x/10); od; y; end:
P:=proc(q) local j, k, n; for n from 1 to q do
k:=0; j:=n; while j mod 2 <> 1 do k:=k+1; j:=j/2; od;
if sigma(2*n+1)+sigma(2*n-1)+sigma(n/2^k)*2^(k+1)-6*n-2=T(n);
then print(n); fi; od; end: P(10^9);
CROSSREFS
Sequence in context: A068478 A342195 A132050 * A213239 A123819 A286076
KEYWORD
nonn,base,more
AUTHOR
Paolo P. Lava, Nov 11 2014
EXTENSIONS
a(6) from Chai Wah Wu, Dec 06 2014
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 June 5 22:26 EDT 2024. Contains 373110 sequences. (Running on oeis4.)