cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A302574 Primitive unitary abundant numbers (definition 2): unitary abundant numbers (A034683) having no unitary abundant proper unitary divisor.

This page as a plain text file.
%I A302574 #9 Jun 22 2019 19:02:04
%S A302574 30,42,66,70,78,102,114,138,150,174,186,222,246,258,282,294,318,354,
%T A302574 366,402,420,426,438,474,498,534,582,606,618,642,654,660,678,726,750,
%U A302574 762,780,786,822,834,840,894,906,924,942,978,990,1002,1014,1020,1038,1074
%N A302574 Primitive unitary abundant numbers (definition 2): unitary abundant numbers (A034683) having no unitary abundant proper unitary divisor.
%C A302574 The unitary analog of A091191.
%H A302574 Amiram Eldar, <a href="/A302574/b302574.txt">Table of n, a(n) for n = 1..10000</a>
%e A302574 70 is primitive unitary abundant since it is unitary abundant (usigma(70) = 144 > 2*70), and all of its unitary divisors are unitary deficient. 210 is unitary abundant since usigma(210) = 576 > 2*210, but is not in this sequence since 70 is one of its unitary divisors, and 70 is unitary abundant.
%t A302574 usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; delta[n_] := usigma[n]-2n; udefQ[n_] := Module[{}, v=Most[Module[{d = Divisors[n]}, Select[ d, GCD[ #, n/# ] == 1 &]]]; u = Max[Map[delta,v]]; u<=0 ]; puaQ[n_] := delta[n] > 0 && udefQ[n]; Select[Range[10000],puaQ]
%Y A302574 Cf. A034448, A034683, A091191, A129487, A302573.
%K A302574 nonn
%O A302574 1,1
%A A302574 _Amiram Eldar_, Apr 10 2018