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!)
A192282 Numbers n such that n and n+1 have same sum of anti-divisors. 3
1, 8, 17, 120, 717, 729, 957, 8097, 10785, 12057, 35817, 44817, 52863, 58677, 59757, 76759, 95397, 102957, 114117, 119337, 182157, 206097, 215997, 230037, 253977, 263877, 269277, 271797, 295377, 321417, 402657, 435477, 483117, 485637, 510837, 586797, 589317 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Like A002961 but using anti-divisors.
Curiously 957 and 958 have same sum of divisors and same sum of anti-divisors.
LINKS
EXAMPLE
Anti-divisors of 717 are 2, 5, 6, 7, 35, 41, 205, 287, 478 and their sum is 1066.
Anti-divisors of 718 are 3, 4, 5, 7, 35, 41, 205, 287, 479 and their sum is 1066.
MAPLE
with(numtheory);
P:=proc(n)
local a, b, i, k;
b:=2;
for i from 4 to n do
a:=0;
for k from 2 to i-1 do
if abs((i mod k)- k/2) < 1 then a:=a+k; fi;
od;
if a=b then print(i-1); fi;
b:=a;
od;
end:
P(200000);
CROSSREFS
Sequence in context: A177178 A357678 A097405 * A088588 A041537 A153315
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Jul 27 2011
EXTENSIONS
Initial term a(1)=1 inserted, a(2)=9 through a(20)=119337 verified, and a(21)-a(28) added by John W. Layman, Aug 04 2011
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 24 19:52 EDT 2024. Contains 371963 sequences. (Running on oeis4.)