OFFSET
1,2
COMMENTS
The analogous sequence of squarefull highly composite numbers is the sequence of highly powerful numbers (A005934).
The corresponding record values are 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 16, ... (see the link for more values).
Also, indices of records in A361430, i.e., numbers k with a record number of coreful divisors d such that k/d is also a coreful divisor of k (a coreful divisor d of a number k is a divisor with the same set of distinct prime factors as k, see A307958). - Amiram Eldar, Aug 15 2023
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..832
Amiram Eldar, Table of n, a(n), A190867(a(n)) for n = 1..832
MATHEMATICA
f[p_, e_] := Max[1, e-1] ; d[1] = 1; d[n_] := Times @@ (f @@@ FactorInteger[n]); s = {}; dm = 0; Do[d1 = d[n]; If[d1 > dm, dm = d1; AppendTo[s, n]], {n, 1, 10^5}]; s
PROG
(PARI) d(n) = vecprod(apply(x->max(1, x-1), factor(n)[, 2]));
lista(kmax) = {my(dm = 0, d1); for(k = 1, kmax, d1 = d(k); if(d1 > dm, dm = d1; print1(k, ", "))); } \\ Amiram Eldar, Aug 15 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Jun 26 2020
STATUS
approved