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.

A054862 (+2)-unitary sigma 3-multiple perfect number: numbers k such that (+2)usigma(k) = 3*k, where (+2)usigma(k) = A107759(k).

Original entry on oeis.org

105, 45045, 237405, 101846745, 121486365, 274680671265
Offset: 1

Views

Author

Keywords

Examples

			(+2)usigma(12) = (2+4)*(2+3) = 30.
Factorizations: 3*5*7, 3^2*5*7*11*13, 3*5*7^2*17*19, 3^2*5*7^2*11*13*17*19, 3^3*5*7*11*13*29*31, 3^3*5*7^2*11*13*17*19*29*31.
		

Crossrefs

Programs

  • Mathematica
    s[n_] := Times @@ (2 + Power @@@ FactorInteger[n]); s[1] = 1; Select[Range[2.5*10^5], s[#] == 3*# &] (* Amiram Eldar, Aug 26 2022 *)

Extensions

Offset corrected by Amiram Eldar, Aug 26 2022