A230043 Numbers whose abundancy sigma(n)/n is a rational cube.
1, 8232, 32640, 265825, 3846879, 6517665, 14705145, 16926000, 31441920, 56471688, 146475000, 211421364, 277368000, 369022500, 662518050, 679568670, 968353620, 2166699360, 3091750900, 3755367252, 4122716598, 6536970000, 9740587500, 10066738500, 12423246290
Offset: 1
Keywords
Examples
For n=8232, sigma(n)/n = 1000/343 = (10/7)^3.
Links
- Michel Marcus and Donovan Johnson, Table of n, a(n) for n = 1..33
- A. Flammenkamp, The multiply perfect numbers page
- M. Kosters, A solution to sigma(x^3)=y^3, Post to NMBRTHRY, Dec 23 2013
- Michel Marcus, Some other terms that belong to the sequence
Crossrefs
Cf. A069070 (abundancy is a square).
Programs
-
Maple
isQcube := proc(r) isA000578(numer(r)) and isA000578(denom(r)) ; end proc: # see A000578 for isA000578() isA230043 := proc(n) abu := numtheory[sigma](n)/n ; isQcube(abu) ; end proc: for n from 1 do if isA230043(n) then printf("%d,\n",n); end if; end do: # R. J. Mathar, Oct 08 2013
-
PARI
is_A230043(n) = ispower(sigma(n)/n, 3);
Extensions
a(11)-a(25) from Donovan Johnson, Oct 10 2013
a(26)-a(33) from Donovan Johnson, Dec 22 2013
Comments