login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A129485 Odd unitary abundant numbers. 15

%I #13 Sep 02 2022 04:52:05

%S 15015,19635,21945,23205,25935,26565,31395,33495,33915,35805,39585,

%T 41055,42315,42735,45885,47355,49665,50505,51765,54285,55965,58695,

%U 61215,64155,68145,70455,72345,77385,80535,82005,83265,84315,91245,95865,102795,112035

%N Odd unitary abundant numbers.

%C This sequence is different from A112643. The two sequences agree for the first 50 terms but differ thereafter. The exceptions, i.e. those odd unitary abundant numbers that are not squarefree ordinary abundant numbers, are in A129486.

%C 22309287 is the smallest term not divisible by 5. 33426748355 is the smallest term not divisible by 3. - _Donovan Johnson_, May 15 2013

%C The numbers of terms not exceeding 10^k, for k = 5, 6, ..., are 34, 137, 1714, 16918, 181744, 1752337, 17290556, ... . Apparently, the asymptotic density of this sequence exists and equals 0.00017... . - _Amiram Eldar_, Sep 02 2022

%H Donovan Johnson, <a href="/A129485/b129485.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/UnitaryDivisor.html">Unitary Divisor</a>.

%F This sequence contains the odd members of A034683. i.e. odd numbers with a positive unitary abundance (A129468).

%e The third odd unitary abundant number is 21945. Hence a(3) = 21945.

%p # see A034683 for the code of isA034683()

%p isA129485 := proc(n)

%p type(n,'odd') and isA034683(n) ;

%p end proc:

%p for n from 1 do

%p if isA129485(n) then

%p print(n);

%p end if;

%p end do: # _R. J. Mathar_, Nov 10 2014

%t UnitaryDivisors[n_Integer?Positive]:=Select[Divisors[n],GCD[ #,n/# ]==1&];sstar[n_]:=Plus@@UnitaryDivisors[n]-n;Select[Range[1,10^5,2],sstar[ # ]># &]

%Y Cf. A034683, A129486, A034460, A034448, A129487, A002827, A129468, A112643.

%K easy,nonn

%O 1,1

%A _Ant King_, Apr 17 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 8 22:22 EDT 2024. Contains 375024 sequences. (Running on oeis4.)