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!)
A290703 Solutions to x + d(x) = sigma(x)/2, where d(x) is the number of divisors of x. 1
176, 2205, 7544, 10184, 28544, 503296, 1020568, 2051072, 6019264, 10001848, 15317696, 35019968, 354375344, 535871488, 9175990784, 115917884416 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
d(176) = 10, sigma(176) = 372 and 176 + 10 = 186 = 372/2.
MAPLE
with(numtheory): P:=proc(q) local n; for n from 1 to q do if
n+tau(n)=sigma(n)/2 then print(n); fi; od; end: P(10^9);
MATHEMATICA
Select[Range[10^7], # + DivisorSigma[0, #] == DivisorSigma[1, #]/2 &] (* Michael De Vlieger, Aug 26 2017 *)
PROG
(PARI) isok(x) = x + numdiv(x) == sigma(x)/2; \\ Michel Marcus, Aug 25 2017
CROSSREFS
Sequence in context: A133063 A264892 A223611 * A077742 A027483 A243647
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Aug 09 2017
EXTENSIONS
a(11)-a(12) from Michel Marcus, Aug 25 2017
a(13)-a(16) from Giovanni Resta, Aug 25 2017
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 August 13 15:48 EDT 2024. Contains 375142 sequences. (Running on oeis4.)