A383695 Exponential infinitary abundant numbers that are not exponential unitary abundant: numbers k such that A361175(k) > 2*k >= A322857(k).
476985600, 815673600, 1018886400, 1177862400, 1493049600, 2014214400, 2373638400, 2712326400, 3756614400, 3863865600, 4744454400, 5218617600, 5246841600, 6234681600, 7928121600, 8108755200, 8245036800, 8972409600, 9062726400, 9824774400, 10502150400, 10603756800
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
seq[max_] := Module[{prim = seqA383696[max], s = {}, sq}, Do[sq = Select[Range[Floor[max/p]], CoprimeQ[p, #] && SquareFreeQ[#] &]; s = Join[s, p*sq], {p, prim}]; Union[s]]; seq[10^10] (* using the function seqA383696 from A383696 *)
-
PARI
list(lim) = {my(p = listA383696(lim), s = []); for(i = 1, #p, s = concat(s, apply(x -> p[i]*x, select(x -> gcd(x, p[i]) == 1 && issquarefree(x), vector(lim\p[i], j, j))))); Set(s);} \\ using the function listA383696 from A383696
Comments