A238575 k-Lehmer numbers with two prime factors.
15, 51, 85, 91, 133, 247, 259, 451, 481, 511, 679, 703, 763, 771, 949, 1111, 1141, 1261, 1285, 1351, 1387, 1417, 1843, 1891, 2047, 2071, 2119, 2509, 2701, 2761, 3031, 3097, 3277, 3409, 3589, 3667, 4033, 4039, 4141, 4369, 4411, 4681, 5383, 5461, 5611, 5629
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
rad[n_] := Times @@ Transpose[FactorInteger[n]][[1]]; Select[1 + \ Range[10000], Length[FactorInteger[#]] == 2 && Mod[# - 1, rad[EulerPhi[#]]] == 0 &]
Comments