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

A081398
Numbers k for which the number of common prime factors of sigma(k) and phi(k) is exactly six (ignoring multiplicity).
1
2003639, 2179316, 2180057, 2382974, 2689561, 2720567, 2761873, 2933675, 3145572, 3435381, 3925463, 4007278, 4137111, 4212692, 4360114, 4947971, 5172881, 5379122, 5441134, 5458673, 5523746, 5675816, 5748831, 5867350, 5957435, 6010917, 6537948, 6540171, 6561511
OFFSET
1,1
COMMENTS
Numbers k such that A081396(k) = 6. - Amiram Eldar, Mar 25 2024
LINKS
EXAMPLE
k = 400: sigma(400) = 6846840 = 2*2*2*3*3*5*7*11*13*19, phi(400) = 1755600 = 2*2*2*2*3*5*5*7*11*19, the common prime set = {2,3,5,7,11,19} with six primes.
MATHEMATICA
ffi[x_] := Flatten[FactorInteger[x]]; lf[x_] := Length[FactorInteger[x]]; ba[x_] := Table[ffi[x][[2*w - 1]], {w, 1, lf[x]}] ; Do[s = Length[Intersection[ba[EulerPhi[n]], ba[DivisorSigma[1, n]]]]; If[Greater[s, 5], Print[{n, s}]], {n, 1, 10000000}]
PROG
(PARI) is(n) = {my(f = factor(n)); omega(gcd(sigma(f), eulerphi(f))) == 6; } \\ Amiram Eldar, Mar 25 2024
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 28 2003
EXTENSIONS
3925463 inserted and more terms added by Amiram Eldar, Mar 25 2024
STATUS
approved