login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A286837
Numbers n such that usigma(n) = usigma(2*n+1) where usigma(n) = A034448(n).
1
1386, 6790, 8130, 18618, 21378, 27654, 38874, 60030, 64020, 71058, 89178, 92130, 97014, 117114, 118902, 180438, 182226, 224058, 247044, 396078, 495114, 510906, 528510, 723486, 855966, 979098, 1007562, 1012380, 1032360, 1141194, 1302906, 1410294
OFFSET
1,1
COMMENTS
46495995 = 3*5*7*13*23*1481 is the smallest odd term of this sequence.
LINKS
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); Select[Range[10^5], usigma[#] == usigma[2#+1] &] (* Amiram Eldar, Aug 04 2019 *)
PROG
(PARI) a034448(n) = sumdivmult(n, d, if(gcd(d, n/d)==1, d));
isok(n) = a034448(n)==a034448(2*n+1); \\ after Charles R Greathouse IV at A034448
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Aug 01 2017
STATUS
approved