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.

A307866 K-champion numbers: numbers m such that K(m) > K(j) for all j < m, where K(m) is the Kalmár function (A074206).

Original entry on oeis.org

0, 1, 4, 6, 8, 12, 24, 36, 48, 72, 96, 120, 144, 192, 240, 288, 360, 432, 480, 576, 720, 864, 960, 1152, 1440, 1728, 1920, 2160, 2304, 2880, 3456, 4320, 5760, 6912, 8640, 11520, 17280, 23040, 25920, 30240, 34560, 46080, 51840, 60480, 69120, 86400, 103680, 120960
Offset: 1

Views

Author

Amiram Eldar, May 02 2019

Keywords

Comments

The corresponding record values are 0, 1, 2, 3, 4, 8, 20, 26, 48, 76, 112, 132, 208, ... (see the link for more values).
Deléglise et al. (2008) proved that the number of powerful (A001694) terms in this sequence is finite. They ask whether a(391) = 485432135516160000 (the 112th powerful term) is the largest. - Amiram Eldar, Aug 20 2019
Is abs(omega(a(n)) - omega(a(n+1))) <= 1? (Cf. A001221.) - David A. Corneth, Apr 16 2020

Crossrefs

Cf. A001221, A001694, A002093, A033833, A074206, A163272, A330686 (after primorial deflation).

Programs

  • Mathematica
    a[0] = 0; a[1] = 1; a[n_] := a[n] = Total[a /@ Most[Divisors[n]]]; s = {}; am=-1; Do[a1 = a[n]; If[a1>am, am=a1; AppendTo[s, n]], {n, 0, 10000}]; s

Formula

For n >= 1, a(1+n) = A108951(A330686(n)). - Antti Karttunen, Dec 31 2019