A336702 Numbers whose abundancy index is a power of 2.
1, 6, 28, 496, 8128, 30240, 32760, 2178540, 23569920, 33550336, 45532800, 142990848, 1379454720, 8589869056, 43861478400, 66433720320, 137438691328, 153003540480, 403031236608, 704575228896, 181742883469056, 6088728021160320, 14942123276641920, 20158185857531904, 275502900594021408, 622286506811515392, 2305843008139952128
Offset: 1
Keywords
Examples
For 30240, sigma(30240) = 120960 = 4*30240, therefore, as sigma(k)/k = 2^2, a power of two, 30240 is present.
Links
- Antti Karttunen, Table of n, a(n) for n = 1..769 (computed from the b-file of A007691 prepared by T. D. Noe, using Flammenkamp's data)
- Index entries for sequences where odd perfect numbers must occur, if they exist at all
- Index entries for sequences related to sigma(n)
Crossrefs
Union with {2} gives the positions of zeros in A347381.
Programs
-
PARI
isA336702(n) = { my(r=sigma(n)/n); (1==denominator(r)&&!bitand(r, r-1)); }; \\ (Corrected) - Antti Karttunen, Aug 31 2021
Comments