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-2 of 2 results.

A357462 Numbers whose sum of deficient divisors is equal to their sum of nondeficient divisors.

Original entry on oeis.org

6, 28, 30, 42, 66, 78, 102, 114, 138, 150, 174, 186, 222, 246, 258, 282, 294, 308, 318, 330, 354, 364, 366, 390, 402, 426, 438, 462, 474, 476, 496, 498, 510, 532, 534, 546, 570, 582, 606, 618, 642, 644, 654, 678, 690, 714, 726, 750, 762, 786, 798, 812, 822, 834
Offset: 1

Views

Author

Amiram Eldar, Sep 29 2022

Keywords

Comments

Numbers k such that A187793(k) = A187794(k) + A187795(k).
All the terms are nondeficient numbers (A023196).
All the perfect numbers (A000396) are terms.
This sequence is infinite: if k = 2^(p-1)*(2^p-1) is an even perfect number and q > 2^p-1 is a prime, then k*q is a term.
Since the total sum of divisors of any term is even, none of the terms are squares or twice squares.
Are there odd terms in this sequence? There are none below 10^10.
The numbers of terms not exceeding 10^k, for k = 1, 2, ..., are 1, 6, 63, 605, 6164, 61291, 614045, 6139193, 61382607, 613861703, ... . Apparently, the asymptotic density of this sequence exists and equals 0.06138... .

Examples

			6 is a term since the sum of its deficient divisors, 1 + 2 + 3 is equal to 6, its only nondeficient divisor.
30 is a term since the sum of its deficient divisors, 1 + 2 + 3 + 5 + 10 + 15 = 36 is equal to the sum of its nondeficient divisors, 6 + 30 = 36.
		

Crossrefs

Subsequence of A023196 and A028983.
A000396 is a subsequence.

Programs

  • Mathematica
    q[n_] := DivisorSum[n, If[DivisorSigma[-1, #] < 2, #, -#] &] == 0; Select[Range[1000], q]
  • PARI
    is(n) = sumdiv(n, d, if(sigma(d,-1) < 2, d, -d)) == 0;

A357461 Odd numbers whose number of deficient divisors is equal to their number of nondeficient divisors.

Original entry on oeis.org

3010132125, 4502334375, 5065535475, 6456074625, 8813660625, 9881746875, 15395254875, 15452011575, 16874983125, 18699305625, 19814169375, 19909992375, 21380506875, 25366375125, 26643400875, 26746594875, 28943578125, 31562182575, 33074966925, 34315506225, 35300640375
Offset: 1

Views

Author

Amiram Eldar, Sep 29 2022

Keywords

Comments

The odd terms of A357460.
If there are no odd perfect numbers, then this sequence is also the subsequence of the odd terms of A335543.
The first 100 terms are all divisible by 4725 = 3^3 * 5^2 * 7.

Crossrefs

Subsequence of A005101, A005231 and A357460.
Cf. A335543.

Programs

  • PARI
    is(n) = n%2 && sumdiv(n, d, if(sigma(d, -1) < 2, 1, -1)) == 0;
Showing 1-2 of 2 results.