OFFSET
1,1
COMMENTS
Numbers k such that A081396(k) = 6. - Amiram Eldar, Mar 25 2024
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
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
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 28 2003
EXTENSIONS
3925463 inserted and more terms added by Amiram Eldar, Mar 25 2024
STATUS
approved