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.

A187205 Numbers such that the last of the absolute differences of divisors is 0.

Original entry on oeis.org

10, 40, 50, 56, 104, 130, 136, 160, 170, 171, 224, 230, 232, 250, 290, 310, 312, 370, 392, 410, 430, 459, 470, 520, 530, 560, 590, 610, 624, 640, 648, 670, 710, 730, 790, 830, 890, 896, 970, 1000, 1010, 1030, 1070, 1088, 1090, 1130, 1160, 1216, 1218, 1221
Offset: 1

Views

Author

Omar E. Pol, Aug 01 2011

Keywords

Comments

Numbers n such that A187203(n) = 0.

Crossrefs

Programs

  • Haskell
    import Data.List (elemIndices)
    a187205 n = a187205_list !! (n-1)
    a187205_list = map (+ 1) $ elemIndices 0 $ map a187203 [1..]