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.

A383714 Integers k such that there exists an integer 0

Original entry on oeis.org

21, 231, 284, 1210, 2499, 2924, 5564, 6368, 10856, 14595, 18416, 66992, 71145, 76084, 87633, 88730
Offset: 1

Views

Author

S. I. Dimitrov, May 14 2025

Keywords

Comments

The numbers m and k form a WPM(2)-amicable pair (WPM = weighted power mean). See Dimitrov link.

Examples

			(7, 21) is such a pair because 7*sigma(7)^2 + 21*sigma(21)^2 = 7*8^2 + 21*32^2 = (7+21)^3.
		

Crossrefs

Cf. A002046 (a subsequence), A063990, A259180, A383239, A383483, A383484.

Programs

  • PARI
    isok(k)= for (m=1, k-1, if (m*sigma(m)^2 + k*sigma(k)^2 == (m+k)^3, return(m))); \\ Michel Marcus, May 15 2025

Extensions

a(3)-a(16) from Michel Marcus, May 15 2025