A328691 Poulet numbers (Fermat pseudoprimes to base 2) k that have an abundancy index sigma(k)/k that is larger than the abundancy index of all smaller Poulet numbers.
341, 561, 645, 18705, 2113665, 2882265, 81722145, 9234602385, 19154790699045, 43913624518905, 56123513337585, 162522591775545, 221776809518265, 3274782926266545, 4788772759754985
Offset: 1
Links
- Shyam Sunder Gupta, Can You Find no. 49, December 17, 2017.
Programs
-
Mathematica
pouletQ[n_] := CompositeQ[n] && PowerMod[2, n - 1, n ] == 1; rm = 0; s={}; Do[If[!pouletQ[n], Continue[]]; r = DivisorSigma[1, n]/n; If[r > rm, rm = r; AppendTo[s, n]], {n, 1, 3*10^6}]; s
Comments