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.

A383483 Numbers k such that k = sigma(m)-m where m = sigma(3*k)-3*k.

Original entry on oeis.org

3, 15, 5919, 118719, 179871, 33750303
Offset: 1

Views

Author

S. I. Dimitrov, Apr 28 2025

Keywords

Comments

S. I. Dimitrov introduced the notion of (alpha, beta)-amicable pairs.

Examples

			For alpha=1, beta=3 we have (3, 4), (15, 33), (5919, 7905).
Here (3, 4) is such a pair because 3=sigma(4)-4 and 4=sigma(3*3)-3*3.
		

Crossrefs

Programs

  • PARI
    isok(k) = my(m = sigma(3*k) - 3*k); if (m>0, sigma(m) - m == k); \\ Michel Marcus, Apr 28 2025

Formula

We say that the numbers m and n form an (alpha, beta)-amicable pair if sigma(alpha*n)-alpha*n=m and sigma(beta*m)-beta*m=n, where alpha and beta are positive integers, and sigma(n) is the sum of the divisors of n.

Extensions

a(4)-a(6) from Michel Marcus, Apr 28 2025