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.

A335831 Numbers k with a record value of tau(tau(k)) (A010553), where tau(k) is the number of divisors of k (A000005).

Original entry on oeis.org

1, 2, 6, 12, 60, 360, 1260, 2520, 5040, 55440, 277200, 720720, 3603600, 61261200, 129729600, 908107200, 2205403200, 15437822400, 293318625600, 3226504881600, 6746328388800, 74209612276800, 195643523275200, 1855240306920000, 2152078756027200, 27977023828353600
Offset: 1

Views

Author

Amiram Eldar, Jun 25 2020

Keywords

Comments

First differs from A189394 at n=15.
The corresponding record values are 1, 2, 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, 24, 30, ... (see the link for more values).

Crossrefs

Subsequence of A025487.

Programs

  • Mathematica
    f[n_] := DivisorSigma[0, DivisorSigma[0, n]]; fm = 0; s = {}; Do[f1 = f[n]; If[f1 > fm, fm = f1; AppendTo[s, n]], {n, 1, 10^5}]; s

Formula

tau(tau(a(n))) ~ c * sqrt(log(a(n)))/log(log(a(n))), where c is a constant (Buttkewitz et al., 2012).