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!)
A258101 Number x such that usigma(x) = (-1)sigma(x), where usigma(x) is the sum of unitary divisors of x (A034448) and (-1)sigma(x) is defined in A049060 . 2
1, 4, 15867, 21357, 49887, 63468, 69875, 85428, 86387, 149875, 199548, 247475, 271607, 279500, 293944, 318681, 345548, 599500, 637659, 989900, 1086428, 1169091, 1274724, 1897875, 1913571, 2550636, 2665269, 2801880, 2855691 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
usigma(1) = (-1)sigma(1) = 1;
usigma(4) = (-1)sigma(4) = 5;
usigma(15867) = (-1)sigma(15867) = 18480; etc.
MAPLE
with(numtheory): P:=proc(q) local a, b, d, k, n;
a:=0; for n from 1 to q do a:=divisors(n); d:=0; for k from 1 to nops(a)
do if gcd(a[k], n/a[k])=1 then d:=d+a[k]; fi; od; a:=ifactors(n)[2]; b:=1;
for k from 1 to nops(a) do b:=b*(-1+sum(a[k][1]^j, j=1..a[k][2])); od;
if b=d then print(n); fi; od; end: P(10^9);
MATHEMATICA
aQ[n_] := Module[{f = FactorInteger[n]}, p = f[[;; , 1]]; e = f[[;; , 2]]; Times@@(p^e+1) == Times@@((p^(e+1)-2*p+1)/(p-1))]; Join[{1}, Select[Range[2, 200000 ], aQ]] (* Amiram Eldar, Jun 23 2019 *)
CROSSREFS
Sequence in context: A152840 A003832 A162703 * A265215 A070157 A003556
KEYWORD
nonn
AUTHOR
Paolo P. Lava, May 20 2015
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 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)