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.

A306621 Highly abundant numbers that are powerful.

Original entry on oeis.org

1, 4, 8, 16, 36, 72, 108, 144, 216, 288, 1800, 3600, 7200
Offset: 1

Views

Author

Amiram Eldar, Mar 01 2019

Keywords

Comments

Alaoglu and Erdős proved that 7200 is the last term.
Intersection of A001694 and A002093.

Crossrefs

Programs

  • Mathematica
    seq={1}; sm = 0; Do[s = DivisorSigma[1, n]; If[s>sm, sm = s; If[ Min @  FactorInteger[n][[;;, 2]] > 1, AppendTo[seq, n]]], {n, 2, 72000}]; seq