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.

A193672 Numbers such that the last of the differences of divisors is < 0.

Original entry on oeis.org

14, 20, 22, 24, 26, 28, 34, 36, 38, 40, 46, 48, 50, 58, 60, 62, 63, 70, 74, 80, 82, 84, 86, 94, 96, 98, 99, 100, 105, 106, 117, 118, 120, 122, 134, 136, 138, 140, 142, 146, 152, 153, 154, 158, 160, 166, 170, 174, 178, 180, 182, 184, 186, 189, 190, 192, 194
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 02 2011

Keywords

Comments

A187202(a(n)) < 0.

Crossrefs

Programs

  • Haskell
    import Data.List (findIndices)
    a193672 n = a193672_list !! (n-1)
    a193672_list = map (+ 1) $ findIndices (< 0) $ map a187202 [1..]
  • Mathematica
    Select[Range[200],Differences[Divisors[#],DivisorSigma[0,#]-1][[1]]<0&] (* Harvey P. Dale, Feb 14 2025 *)