A249671 Integers n such that A249670(n) = n.
1, 364, 86800, 90768, 149856, 632400, 828816, 46462800, 61987600, 148468320, 153972000, 185684160, 187465824, 189300384, 191659104, 193808160, 196219296, 202460352, 204118464, 215399520, 220116960, 221931360, 222778080, 223382880, 228584160, 338116680
Offset: 1
Keywords
Examples
sigma(364)/364 = 28/13 and 28*13 = 364, so 364 is in the sequence.
Programs
-
Mathematica
lista[n_Integer] := Select[Range[n], # == Numerator[DivisorSigma[-1, #]] * Denominator[DivisorSigma[-1, #]] &]; lista[10^6] (* Michael De Vlieger, Nov 10 2014 *)
-
PARI
isok(n) = my(ab = sigma(n)/n); numerator(ab)*denominator(ab) == n; \\ Michel Marcus, Nov 04 2014
Comments