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

A222263 Odd numbers n such that 2n/sigma(n) - 1 = 1/x for some positive integer x.

Original entry on oeis.org

1, 3, 15, 135, 315, 585, 819, 1155, 1365, 1485, 2295, 4455, 9009, 9405, 9945, 11115, 13923, 13965, 16965, 33705, 34335, 40365, 43785, 43875, 63063, 63855, 84825, 90675, 106425, 108927, 130815, 209385, 236115, 262845, 387387, 396495, 397575, 449295, 483945
Offset: 1

Views

Author

M. F. Hasler, Feb 20 2013

Keywords

Comments

Odd terms from A222264, see there for motivation and further links. In particular, the powers of 2 in A222264 which correspond to perfect numbers are excluded, so all n*x from this sequence are spoof perfect numbers, cf. A174292.
Here we do not exclude n if gcd(n,x) > 1 (the first such term is 1155), which would arguably be a "reasonable" additional condition to impose.
The first term with odd x is n=a(79)=9018009, x=22021, which yields Descarte's n*x=198585576189, see also A033870, A033871 and A222262.
No other term with odd x (and thus no other odd freestyle perfect number) is known as of today, to our best knowledge. See the paper by Banks et al. for some restrictions on such numbers.
One can note that when x is even, then sigma(n)/n is of the form (2k-2)/k. For instance, for n=15 we have x=4, and sigma(n)/n = 8/5 with k=5. On the other hand, when x is odd, then sigma(n)/n is of the form (2k-1)/k. For instance, for n=9018009 we have x=22021, and sigma(n)/n = 22021/11011 with k=11011. - Michel Marcus, Nov 24 2013

Examples

			For a(3)=15, we have sigma(15)=sigma(3*5)=4*6=24, thus 2*15/sigma(15) = 30/24 = 1+1/4. Here, x=4, and if 4 was assumed to be prime, then sigma'(4)=1+4=5 (*) and sigma'(15*4) = sigma(15)*sigma'(4) = 24*5 = 120 = 2*(15*4), i.e. 15*4 is a spoof perfect number.
(*) Here, sigma' is the "freestyle" sum-of-divisors function which assumes that 4 is prime, i.e., sigma'(n)=sigma(n/4^k)*(4^(k+1)-1)/3 with 4^k || n, or k=valuation(n,4)=floor(A007814(n)/2).
		

Crossrefs

Cf. A000203 = sigma, the sum-of-divisors function.

Programs

  • PARI
    forstep(n=1,9e9,2, numerator(2*n/sigma(n)-1)==1 & print1(n","))

A033870 Divisors = 1 (mod 4) of Descartes's 198585576189.

Original entry on oeis.org

1, 9, 13, 21, 33, 49, 57, 61, 77, 117, 121, 133, 169, 209, 273, 361, 429, 441, 549, 637, 693, 741, 793, 1001, 1089, 1197, 1281, 1521, 1573, 1617, 1729, 1881, 2013, 2541, 2717, 2793, 2989, 3249, 3477, 3549, 4389, 4693, 4697, 5577, 5733, 5929
Offset: 1

Views

Author

Keywords

Comments

The number 198585576189 has 486 divisors, 246 of which are congruent to 1 modulo 4. - M. F. Hasler, Feb 17 2017

Examples

			198585576189 = 3^2 * 7^2 * 11^2 * 13^2 * 19^2 * 61.
		

Crossrefs

Programs

  • PARI
    lista() = {fordiv(198585576189, d, if (d % 4 == 1, print1(d, ", ")));} \\ Michel Marcus, Jul 14 2013
    
  • PARI
    select(d->d%4==1, divisors(198585576189)) \\ M. F. Hasler, Feb 17 2017

Extensions

Corrected by Michel Marcus, Jul 14 2013

A033871 Divisors = 3 (mod 4) of Descartes's 198585576189.

Original entry on oeis.org

3, 7, 11, 19, 39, 63, 91, 99, 143, 147, 171, 183, 231, 247, 363, 399, 427, 507, 539, 627, 671, 819, 847, 931, 1083, 1159, 1183, 1287, 1463, 1859, 1911, 2223, 2299, 2379, 2527, 3003, 3211, 3843, 3971, 4719, 4851, 5187, 5551, 6039
Offset: 1

Views

Author

Keywords

Comments

The number 198585576189 (which is the only known odd spoof-perfect number, cf. A174292) has 486 divisors, 240 of which are congruent to 3 modulo 4. - M. F. Hasler, Feb 17 2017

Examples

			198585576189 = 3^2 * 7^2 * 11^2 * 13^2 * 19^2 * 61.
		

Crossrefs

Programs

  • Mathematica
    Select[Divisors[198585576189],Mod[#,4]==3&] (* Harvey P. Dale, Jan 07 2023 *)
  • PARI
    lista() = {fordiv(198585576189, d, if (d % 4 == 3, print1(d, ", ")));} \\ Michel Marcus, Jul 14 2013
    
  • PARI
    select(d->d%4==1, divisors(198585576189)) \\ M. F. Hasler, Feb 17 2017

Extensions

Corrected by Michel Marcus, Jul 14 2013
Showing 1-3 of 3 results.