OFFSET
1,2
COMMENTS
Function considered by Schinzel and Szekeres in connection with a sieve problem.
LINKS
Altug Alkan, Table of n, a(n) for n = 1..10000
Pierre Mazet and Eric Saias, Etude du graphe divisoriel 4, Annales de la Faculté des sciences de Toulouse : Mathématiques, Serie 6, Vol. 29, No. 4 (2020), pp. 971-975. See p. 973. arXiv preprint, arXiv:1803.10073 [math.NT], 2018. See p. 3.
A. Schinzel and G. Szekeres, Sur un problème de M. Paul Erdős, Acta Sci. Math. Szeged 20 (1959), 221-229.
Gérald Tenenbaum, Sur un problème de crible et ses applications, Annales scientifiques de l'École Normale Supérieure, 4ème série, tome 19, n°1, (1986), pp .1-30.
Gérald Tenenbaum, Sur un problème de crible et ses applications. II. Corrigendum et étude du graphe divisoriel, Annales scientifiques de l'École Normale Supérieure, Série 4 : Tome 28 (1995) no. 2 , pp. 115-127.
Andreas Weingartner, Integers with dense divisors, Journal of Number Theory, Volume 108, Issue 1, September 2004, Pages 1-17.
Andreas Weingartner, The Schinzel-Szekeres function, arXiv:2310.13038 [math.NT], 2023.
FORMULA
a(n) = n * max_{i=1..k-1} d_{i+1}/d_{i}, where d_1 < d_2 < ... < d_k are the divisors of n (Tenenbaum, 1986, Lemma 2.2, p. 8). - Amiram Eldar, Sep 27 2024
EXAMPLE
MATHEMATICA
a[1]=1; a[n_] := Table[d FactorInteger[d][[1, 1]], {d, Rest[Divisors[n]]}] // Max; Array[a, 60] (* Jean-François Alcover, Sep 26 2018 *)
PROG
(PARI) spf(n) = vecmin(factor(n)[, 1]);
a(n) = if (n==1, 1, d = divisors(n); vecmax(vector(#d-1, k, d[k+1]*spf(d[k+1])))); \\ Michel Marcus, Mar 28 2018
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Michel Marcus, Oct 12 2012
STATUS
approved