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.

A384411 Pairs (k, m) such that k = sigma(m) - m and m = sigma(2*k) - 2*k.

Original entry on oeis.org

26, 46, 296, 586
Offset: 1

Views

Author

S. I. Dimitrov, Jun 01 2025

Keywords

Comments

Fixed points of x->A346878(A001065(x)).
Next term > 15*10^7.

Examples

			(26, 46) is such a pair because 26 = sigma(46) - 46 and 46 = sigma(52) - 52.
(296, 586) is another pair.
		

Crossrefs

Programs

  • PARI
    for(k=1,10^9, m = sigma(2*k) - 2*k;if(k == sigma(m) - m, print1(k, ", ", m, ", "))); \\ Joerg Arndt, Jun 01 2025