A129485 Odd unitary abundant numbers.
15015, 19635, 21945, 23205, 25935, 26565, 31395, 33495, 33915, 35805, 39585, 41055, 42315, 42735, 45885, 47355, 49665, 50505, 51765, 54285, 55965, 58695, 61215, 64155, 68145, 70455, 72345, 77385, 80535, 82005, 83265, 84315, 91245, 95865, 102795, 112035
Offset: 1
Examples
The third odd unitary abundant number is 21945. Hence a(3) = 21945.
Links
- Donovan Johnson, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Unitary Divisor.
Programs
-
Maple
# see A034683 for the code of isA034683() isA129485 := proc(n) type(n,'odd') and isA034683(n) ; end proc: for n from 1 do if isA129485(n) then print(n); end if; end do: # R. J. Mathar, Nov 10 2014
-
Mathematica
UnitaryDivisors[n_Integer?Positive]:=Select[Divisors[n],GCD[ #,n/# ]==1&];sstar[n_]:=Plus@@UnitaryDivisors[n]-n;Select[Range[1,10^5,2],sstar[ # ]># &]
Comments