A091896 Numbers n such that there exists no k for which the denominator of d(k)/k is n, where d = A000005 is the number-of-divisors function.
18, 30, 72, 112, 144, 243, 252, 288, 294, 336, 360, 396, 468, 504, 576, 612, 616, 625, 684, 726, 728, 792, 810, 828, 840, 936, 952, 960, 1014, 1044, 1064, 1116, 1224, 1250, 1260, 1288, 1332, 1350, 1368, 1386, 1440, 1476, 1548, 1568, 1584, 1624, 1638, 1656
Offset: 1
Keywords
Links
- M. F. Hasler and David A. Corneth, Table of n, a(n) for n = 1..10000 (first 3541 terms from M. F. Hasler)
Crossrefs
Programs
-
Mathematica
a = Table[0, {2000}]; Do[m = n; b = Denominator[ DivisorSigma[0, n]/n]; If[b < 2001 && a[[b]] == 0, a[[b]] = n], {n, 1, 25000000}]; Select[ Range[2000], a[[ # ]] == 0 &]
-
PARI
select( {is_A091896(n)=!A091895(n)}, [1..10^4] ) \\ M. F. Hasler, Apr 04 2022
Extensions
Edited by M. F. Hasler, Apr 04 2022
Comments