A348583 Numbers k such that k | A002129(k).
1, 60, 728, 6960, 60512, 97152, 728000, 1900080, 2184000, 4371840, 26522496, 843480000, 23009688000, 46352390400, 93155148800, 279465446400, 701869363200, 938948846080, 1099176108032, 2816846538240
Offset: 1
Examples
60 is a term since A002129(60) = -120 is divisible by 60.
Programs
-
Mathematica
f[p_, e_] := If[p == 2, 2^(e + 1)-3, (p^(e + 1) - 1)/(p - 1)]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Range[10^5], Divisible[s[#], #] &]
Extensions
a(20) from Martin Ehrenstein, Nov 06 2021
Comments