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.

A289126 Numbers n such that usigma(usigma(n))/usigma(n) > usigma(usigma(m))/usigma(m) for all m < n, where usigma(n) is the sum of unitary divisors of n (A034448).

Original entry on oeis.org

1, 2, 5, 18, 164, 1538, 20018, 408404, 7759748, 148728578, 6976017044, 7317446132
Offset: 1

Views

Author

Amiram Eldar, Jun 25 2017

Keywords

Comments

The unitary version of A289124.

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; a = {}; k=1; rmax = 0; While[Length[a]<8, s = usigma[ k]; s2 = usigma[ s]; r = s2/s;  If[r > rmax, AppendTo[a, k]; rmax = r]; k++]; a

Extensions

a(10)-a(12) from Giovanni Resta, Aug 23 2017