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.

A111291 Number of refactorable numbers (A033950) <= 10^n.

Original entry on oeis.org

1, 4, 16, 92, 665, 5257, 44705, 394240, 3558181, 32608999, 302172507, 2823898245
Offset: 0

Views

Author

Robert G. Wilson v, Nov 01 2005

Keywords

Comments

Simon Colton conjectures that the number of refactorables less than x is at least x/(2 log(x)).

Crossrefs

Cf. A033950.

Programs

  • Mathematica
    c = 0; k = 1; Do[ While[k <= 10^n, If[ Mod[k, DivisorSigma[0, k]] == 0, c++ ]; k++ ]; Print[c], {n, 0, 8}]

Extensions

a(9)-a(11) from Donovan Johnson, Sep 19 2009