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.

A292704 Unitary abundant numbers k such that k+2 is also unitary abundant.

Original entry on oeis.org

1428, 20020, 49740, 63490, 107338, 137170, 142140, 195130, 218218, 315588, 340338, 380380, 382380, 497418, 514668, 555828, 578578, 580578, 602140, 626890, 672978, 711618, 740740, 786828, 795340, 811578, 860860, 862860, 885610, 897258, 904330, 907060, 940938
Offset: 1

Views

Author

Amiram Eldar, Sep 21 2017

Keywords

Examples

			1428 is in the sequence since both 1428 and 1430 are unitary abundant: usigma(1428) = 2880 > 2*1428 and usigma(1430) = 3024 > 2*1430.
		

Crossrefs

Programs

  • Mathematica
    usigma[n_]:=If[n==1, 1, Times @@ (1+Power @@@ FactorInteger[n])];
    uaQ[n_] := usigma[n] > 2 n; Select[Range@100000, uaQ[#] && uaQ[# + 2] &]