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.

A055720 Numbers k such that d(k)+1 | k.

Original entry on oeis.org

3, 4, 10, 15, 28, 35, 54, 55, 63, 64, 65, 85, 95, 98, 100, 115, 125, 135, 144, 145, 147, 155, 156, 175, 176, 185, 189, 205, 215, 234, 235, 245, 260, 265, 295, 297, 305, 335, 336, 351, 355, 364, 365, 395, 400, 408, 415, 416, 445, 459, 485
Offset: 1

Views

Author

Robert G. Wilson v, Jun 09 2000

Keywords

Comments

Integers divisible by 1 more than the number of their divisors. The only prime is 3.
These numbers cannot be very orderly numbers (A167409). - T. D. Noe, Nov 13 2009

Crossrefs

Programs

  • Mathematica
    Select[Range[1000], Mod[ #, 1 + DivisorSigma[0, # ]] == 0 &]
  • PARI
    isok(k) = Mod(k, numdiv(k)+1) == 0; \\ Michel Marcus, Mar 12 2020

Extensions

Edited by T. D. Noe, Nov 13 2009