A291928 Positions of records in A218320.
1, 4, 8, 12, 16, 24, 36, 48, 72, 96, 120, 144, 216, 240, 288, 360, 480, 576, 720, 1080, 1440, 2160, 2520, 2880, 3360, 3600, 4320, 5040, 7200, 7560, 8640, 10080, 15120, 20160, 25200, 30240, 40320, 45360, 50400, 60480, 75600, 90720, 100800, 110880, 120960
Offset: 1
Keywords
Links
- David A. Corneth, Table of n, a(n) for n = 1..160
Programs
-
Mathematica
f[n_, i_, t_] := f[n, i, t] = If[n == 1, 1, If[t == 1, Boole[n <= i], Sum[f[n/d, d, t - 1], {d, Select[Divisors@ n, # <= i &]}]]]; With[{s = Array[f[#, #, 4] &, 10^5]}, Map[FirstPosition[s, #][[1]] &, Union@ FoldList[Max, s]]] (* Michael De Vlieger, Sep 06 2017, after Alois P. Heinz at A218320 *)
Comments