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”).

A337384
Numbers k for which A003973(k) is equal to 2*sigma(k).
4
6, 14, 15, 35, 286, 470, 715, 874, 969, 2001, 2185, 2261, 3021, 4669, 7049, 10509, 24521, 30362, 34694, 34918, 46189, 54610, 58102, 58179, 62698, 65570, 69513, 73628, 75905, 79431, 82510, 86735, 87295, 94658, 95381, 108862, 109810, 120524, 133023, 135751, 144001, 145255, 147572, 156745, 162197, 185339, 192062, 216717
OFFSET
1,1
MATHEMATICA
Select[Range[250000], If[# == 1, 1, DivisorSigma[1, Apply[Times, FactorInteger[#] /. {p_, e_} /; e > 0 :> Prime[PrimePi@ p + 1]^e] ]] == 2 DivisorSigma[1, #] &] (* Michael De Vlieger, Aug 27 2020 *)
PROG
(PARI)
A003973(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); sigma(factorback(f)); };
isA337384(n) = (A003973(n)==2*sigma(n));
CROSSREFS
Subsequence of A337381.
Sequence in context: A325698 A338907 A218005 * A063600 A116926 A140330
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 27 2020
STATUS
approved