A329460 Carmichael numbers k that have an abundancy index sigma(k)/k that is larger than the abundancy index of all smaller Carmichael numbers.
561, 62745, 576480525985, 1886616373665, 3193231538989185, 11947816523586945, 101817952350880305, 171800042106877185
Offset: 1
Programs
-
Mathematica
carmichaelQ[n_] := CompositeQ[n] && Divisible[n - 1, CarmichaelLambda[n]]; rm = 0; s={}; Do[If[!carmichaelQ[n], Continue[]]; r = DivisorSigma[1,n]/n; If[r > rm, AppendTo[s, n]; rm = r], {n, 2, 10^5}]; s
Comments