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.

Showing 1-10 of 40 results. Next

A064114 Unitary weird numbers: unitary abundant (A034683) but not unitary pseudoperfect (A293188).

Original entry on oeis.org

70, 4030, 5390, 5830, 10430, 10570, 10990, 11410, 11690, 11830, 12110, 12530, 12670, 13370, 13510, 13790, 13930, 14770, 15610, 15890, 16030, 16310, 16730, 16870, 17010, 17570, 17990, 18410, 18830, 18970, 19390, 19670, 19810, 20230, 20510, 21490, 21770, 21910
Offset: 1

Views

Author

Naohiro Nomoto, Sep 08 2001

Keywords

Comments

Terms that are not (regular) weird (A006037): 5390, 11830, 17010, 20230, 25270, 37030, 51030, 58870, 67270, 93170, 95830, ... - Amiram Eldar, Dec 01 2018
Conjecture: All the terms are divisible by 10 (tested on the first 10^6 terms). - Amiram Eldar, Oct 19 2019
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are , 0, 1, 1, 4, 205, 1680, 14302, 165369, 1682383, 16326260, ... . Apparently, the asymptotic density of this sequence exists and equals 0.0016... . - Amiram Eldar, Jan 24 2023

Examples

			70 is in the sequence since the sum of its proper unitary divisors, 1, 2, 5, 7, 10, 14, 35 is 74 > 70, yet no subset of these divisors has the sum 74.
		

Crossrefs

Programs

  • Mathematica
    udiv[n_] := Select[Divisors[n], GCD[#, n/#] == 1 &]; weirdQ[n_] := Module[{d = Most[udiv[n]]}, If[Total[d] < n, False, c = SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, n}], n]; c == 0]]; Select[Range[100000], weirdQ] (* Amiram Eldar, Dec 01 2018 *)

Extensions

a(25)-a(38) from Amiram Eldar, Dec 01 2018

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

Original entry on oeis.org

30, 42, 66, 70, 78, 102, 114, 138, 150, 174, 186, 222, 246, 258, 282, 294, 318, 354, 366, 402, 420, 426, 438, 474, 498, 534, 582, 606, 618, 642, 654, 660, 678, 726, 750, 762, 780, 786, 822, 834, 840, 894, 906, 924, 942, 978, 990, 1002, 1014, 1020, 1038, 1074
Offset: 1

Views

Author

Amiram Eldar, Apr 10 2018

Keywords

Comments

The unitary analog of A091191.

Examples

			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.
		

Crossrefs

Programs

  • Mathematica
    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]

A302573 Primitive unitary abundant numbers (definition 1): unitary abundant numbers (A034683) all of whose proper unitary divisors are unitary deficient.

Original entry on oeis.org

70, 840, 924, 1092, 1386, 1428, 1430, 1596, 1638, 1870, 2002, 2090, 2142, 2210, 2394, 2470, 2530, 2970, 2990, 3190, 3230, 3410, 3510, 3770, 4030, 4070, 4510, 4730, 5170, 5390, 5830, 13860, 15015, 16380, 17160, 18480, 19635, 20020, 21420, 21840, 21945, 22440
Offset: 1

Views

Author

Amiram Eldar, Apr 10 2018

Keywords

Comments

The unitary analog of A071395.
Prasad & Reddy proved that n is a primitive unitary abundant number if and only if 0 < usigma(n) - 2n < 2n/p^e, where p^e is the largest prime power that divides n.

Examples

			70 is primitive unitary abundant since it is unitary abundant (usigma(70) = 144 > 2*70), and all of its unitary divisors are unitary deficient. The smaller unitary abundant numbers, 30, 42, 66, are not primitive, since in each 6 is a unitary divisor, and 6 is not unitary deficient.
		

References

  • J. Sandor, D. S. Mitrinovic, and B. Crstici, Handbook of Number Theory, Vol. 1, Springer, 2006, p. 115.

Crossrefs

Programs

  • Mathematica
    maxPower[n_]:=Max[Power @@@ FactorInteger[n]];usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; d[n_]:=usigma[n]-2n; punQ[n_] := d[n]>0 && d[n]< 2n/maxPower[n]; Select[Range[1000], punQ]

A292982 Bi-unitary abundant numbers: numbers n such that bsigma(n) > 2n, where bsigma is the sum of the bi-unitary divisors function (A188999).

Original entry on oeis.org

24, 30, 40, 42, 48, 54, 56, 66, 70, 72, 78, 80, 88, 96, 102, 104, 114, 120, 138, 150, 160, 162, 168, 174, 186, 192, 210, 216, 222, 224, 240, 246, 258, 264, 270, 280, 282, 288, 294, 312, 318, 320, 330, 336, 352, 354, 360, 366, 378, 384, 390, 402, 408, 416, 420
Offset: 1

Views

Author

Amiram Eldar, Sep 27 2017

Keywords

Comments

Analogous to abundant numbers (A005101) with bi-unitary sigma (A188999) instead of sigma (A000203).

Examples

			24 is in the sequence since bsigma(24) = 60 > 2*24.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Select[Divisors[n], Function[d, CoprimeQ[d, n/d]]]; bsigma[m_] :=
    DivisorSum[m, # &, Last@Intersection[f@#, f[m/#]] == 1 &]; bAbundantQ[n_] := bsigma[n] > 2 n; Select[Range[1000], bAbundantQ] (* after Michael De Vlieger at A188999 *)
  • 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));
    isok(n) = vecsum(biudivs(n)) > 2*n; \\ Michel Marcus, Dec 13 2017

A129485 Odd unitary abundant numbers.

Original entry on oeis.org

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

Views

Author

Ant King, Apr 17 2007

Keywords

Comments

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.
22309287 is the smallest term not divisible by 5. 33426748355 is the smallest term not divisible by 3. - Donovan Johnson, May 15 2013
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

Examples

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

Crossrefs

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[ # ]># &]

Formula

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

A293188 Unitary pseudoperfect numbers: numbers that equal to the sum of a subset of their aliquot unitary divisors.

Original entry on oeis.org

6, 30, 42, 60, 66, 78, 90, 102, 114, 138, 150, 174, 186, 210, 222, 246, 258, 282, 294, 318, 330, 354, 366, 390, 402, 420, 426, 438, 462, 474, 498, 510, 534, 546, 570, 582, 606, 618, 630, 642, 654, 660, 678, 690, 714, 726, 750, 762, 770, 780, 786, 798, 822
Offset: 1

Views

Author

Amiram Eldar, Oct 01 2017

Keywords

Comments

Supersequence of A002827.
The nonsquarefree terms are 60, 90, 150, 294, 420, 630, 660, 726, 750, 780, 840, ...

Examples

			150 is in the sequence since its unitary aliquot divisors are 1, 2, 3, 6, 25, 50, 75 and 150 = 25 + 50 + 75.
		

Crossrefs

Programs

  • Mathematica
    udiv[n_]:=Block[{d=Divisors[n]},Select[d,GCD[#,n/#]==1&]]; a={};n=0;While[Length[a]<100,n++;d=Most[udiv[n]];c = SeriesCoefficient[ Series[ Product[1+x^d[[i]],{i,Length[d]} ],{x,0,n}], n]; If[c>0,AppendTo[a,n]]];a (* after T. D. Noe at A005835 *)

A348274 Noninfinitary abundant numbers: numbers k such that A348271(k) > k.

Original entry on oeis.org

36, 48, 80, 144, 180, 240, 252, 288, 300, 324, 336, 396, 400, 432, 468, 528, 560, 576, 588, 612, 624, 684, 720, 768, 784, 816, 828, 880, 900, 912, 960, 1008, 1040, 1044, 1104, 1116, 1200, 1232, 1260, 1280, 1296, 1332, 1360, 1392, 1440, 1456, 1476, 1488, 1520, 1548
Offset: 1

Views

Author

Amiram Eldar, Oct 09 2021

Keywords

Comments

The first odd term is a(3577) = 99225.
The number of terms not exceeding 10^k, for k = 1, 2, ..., are 0, 3, 31, 360, 3605, 36160, 360840, 3618980, 36144059, ... Apparently this sequence has an asymptotic density 0.0361...

Examples

			36 is a term since A348271(36) = 41 > 36.
		

Crossrefs

Subsequence of A005101.
Similar sequences: A034683, A064597, A129575, A129656, A292982.

Programs

  • Mathematica
    f[p_, e_] := Module[{b = IntegerDigits[e, 2], m}, m = Length[b]; Product[If[b[[j]] > 0, 1 + p^(2^(m - j)), 1], {j, 1, m}]]; isigma[1] = 1; isigma[n_] := Times @@ f @@@ FactorInteger[n]; s[n_] := DivisorSigma[1,n] - isigma[n]; Select[Range[1500], s[#] > # &]

A129487 Unitary deficient numbers.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 64, 65, 67, 68, 69, 71, 72, 73, 74, 75, 76, 77, 79
Offset: 1

Views

Author

Ant King, Apr 20 2007

Keywords

Comments

The unitary deficient numbers account for almost 93% of all integers (including all primes (A000040) and prime powers (A000961)) and asymptotically satisfy a(n)~1.0753n. This provides an excellent fit as n grows larger. For example, the one millionth unitary deficient number is 1075293 and the asserted approximation returns 1075300, giving an error of only 0.00065%.

Examples

			The sixth integer that exceeds the sum of its proper unitary divisors is 7. Hence a(6)=7.
		

Crossrefs

Programs

  • Maple
    a := proc(n) numtheory[divisors](n); select(d -> igcd(d,n/d)=1,%); `if`(add(i,i=%) < 2*n,n,NULL) end: # Peter Luschny, May 03 2009
  • Mathematica
    UnitaryDivisors[n_Integer?Positive]:=Select[Divisors[n],GCD[ #,n/# ]==1&];Select[Range[100],Plus@@UnitaryDivisors[ # ]-2#<0 &]

Formula

Integers for which A034460(n) < n, or equivalently for which A034448(n) < 2n.

A348604 Nonexponential abundant numbers: numbers k such that A160135(k) > k.

Original entry on oeis.org

24, 30, 42, 48, 54, 60, 66, 70, 72, 78, 84, 90, 96, 102, 114, 120, 126, 132, 138, 150, 156, 160, 162, 168, 174, 180, 186, 192, 198, 210, 216, 222, 224, 240, 246, 258, 264, 270, 280, 282, 288, 294, 300, 312, 318, 320, 330, 336, 352, 354, 360, 366, 378, 384, 390
Offset: 1

Views

Author

Amiram Eldar, Oct 25 2021

Keywords

Comments

The smallest odd term is a(1357) = 8505.
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 0, 13, 148, 1595, 15688, 158068, 1578957, 15762209, 157745113, 1577808429, ... Apparently this sequence has an asymptotic density 0.157...

Examples

			24 is a term since A160135(24) = 30 > 24.
		

Crossrefs

Subsequence of A005101.
Similar sequences: A034683, A064597, A129575, A129656, A292982, A348274.

Programs

  • Mathematica
    esigma[n_] := Times @@ (Sum[First[#]^d, {d, Divisors[Last[#]]}] &) /@ FactorInteger[n]; q[n_] := DivisorSigma[1, n] - esigma[n] > n; Select[Range[400], q]

A285614 Unitary highly abundant numbers: numbers n such that usigma(n) > usigma(m) for all m < n, where usigma(n) = sum of unitary divisors of n (A034448).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 10, 12, 14, 18, 21, 22, 26, 30, 42, 60, 66, 78, 90, 102, 114, 130, 138, 150, 170, 174, 186, 210, 294, 318, 330, 390, 462, 510, 546, 570, 690, 798, 858, 870, 930, 1050, 1110, 1218, 1230, 1290, 1410, 1470, 1554, 1590, 1722, 1770, 1830, 1974
Offset: 1

Views

Author

Amiram Eldar, Apr 22 2017

Keywords

Comments

Corresponds to A002093 (Highly abundant numbers), with usigma(n) = sum of unitary divisors of n (divisors d such that gcd(d, n/d)=1, A034448) instead of sigma(n) (sum of divisors, A000203).
Contains many terms of A280013 (sum of squarefree divisors instead of unitary divisors), but not all of them - the first terms of A280013 that are not in this sequence are 16530, 26070, 8734110, 8757210,...

Examples

			The first 9 values of usigma(n) for n=1..9 are: 1, 3, 4, 5, 6, 12, 8, 9, 10. usigma(10)=18 is higher than these 9 values, thus 10 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; a = {}; k = 0; Do[s = usigma[n]; If[s > k, AppendTo[a, n]; k = s], {n, 1000}]; a
Showing 1-10 of 40 results. Next