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!)
A302936 Bi-unitary highly composite deficient numbers: bi-unitary deficient numbers k whose number of bi-unitary divisors bd(k) > bd(m) for all bi-unitary deficient numbers m < k. 0
1, 2, 8, 32, 84, 512, 972, 1155, 13365, 25740, 318087, 612612, 11223927, 14549535, 440374077, 746503065, 19013596875 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The record numbers of bi-unitary divisors are 1, 2, 4, 6, 8, 10, 12, 16, 24, 32, 48, 64, 96, 128, 192, 256, 384, ...
The bi-unitary version of A302934.
LINKS
MATHEMATICA
f[n_] := Select[Divisors[n], Function[d, CoprimeQ[d, n/d]]]; bdivnum[n_] := DivisorSum[n, 1 &, Last@Intersection[f@#, f[n/#]] == 1 &]; bsigma[m_] := DivisorSum[m, # &, Last@Intersection[f@#, f[m/#]] == 1 &]; dm = 0; Do[sig = bsigma[n]; If[sig >= 2 n, Continue[]]; d = bdivnum[n]; If[d > dm, Print[n]; dm = d], {n, 1, 1000000000}] (* after Michael De Vlieger at A188999 and A286324 *)
PROG
(PARI) udivs(n) = {my(d = divisors(n)); select(x->(gcd(x, n/x)==1), d); }
gcud(n, m) = vecmax(setintersect(udivs(n), udivs(m)));
biudivs(n) = select(x->(gcud(x, n/x)==1), divisors(n));
lista(nn) = {my(maxd = 0); for(n=1, nn, vbiudiv = biudivs(n); if ((vecsum(vbiudiv) < 2*n) && (#vbiudiv > maxd), print1(n, ", "); maxd = #vbiudiv; ); ); } \\ Michel Marcus, Apr 17 2018
CROSSREFS
Sequence in context: A006552 A134753 A212892 * A227971 A267661 A052481
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Apr 16 2018
EXTENSIONS
a(15)-a(17) from Amiram Eldar, Jan 26 2019
STATUS
approved

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 April 28 19:40 EDT 2024. Contains 372092 sequences. (Running on oeis4.)