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.

A091196 Smallest abundant divisor of n-th abundant number.

Original entry on oeis.org

12, 18, 20, 12, 30, 12, 20, 42, 12, 18, 56, 12, 66, 70, 12, 78, 20, 12, 88, 18, 12, 20, 102, 104, 12, 56, 114, 12, 18, 12, 138, 20, 12, 30, 12, 20, 18, 12, 174, 88, 12, 186, 12, 196, 18, 20, 12, 104, 30, 12, 20, 222, 56, 12, 18, 12, 246, 12, 258, 20, 12, 18, 272, 12
Offset: 1

Views

Author

Reinhard Zumkeller, Dec 27 2003

Keywords

Crossrefs

Programs

  • Mathematica
    ab = Select[Range[300], DivisorSigma[1, #] > 2 # &]; s = {}; Do[a = ab[[k]]; j = 1; While[! Divisible[a, ab[[j]]], j++]; AppendTo[s, ab[[j]]], {k, 1, Length[ab]}]; s (* Amiram Eldar, Aug 30 2019 *)