OFFSET
1,2
COMMENTS
This sequence is infinite (Schinzel, 1954).
Is a(n) = A103199(n) - 1?
From _Michael De Vlieger_, Apr 19 2024: (Start)
a(12) = 1008 = 2^4 * 3^2 * 7 is the smallest term that is not a product of primorials.
a(36) = 2402400 = 2^5 * 3^1 * 5^2 * 7 * 11 * 13 is the smallest term whose exponents are not nonincreasing as prime base increases (ignoring interposing nondivisor primes). (End)
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..69
Michael De Vlieger, Prime power decomposition of a(n), n = 1..69.
Andrzej Schinzel, Sur une propriété du nombre de diviseurs, Publ. Math. (Debrecen), Vol. 3 (1954), pp. 261-262.
MATHEMATICA
seq[kmax_] := Module[{d1 = 1, d2, rm = 0, r, s = {}}, Do[d2 = DivisorSigma[0, k]; r = d1 / d2; If[r > rm, rm = r; AppendTo[s, k-1]]; d1 = d2, {k, 2, kmax}]; s]; seq[10^6]
PROG
(PARI) lista(kmax) = {my(d1 = 1, d2, rm = 0, r); for(k = 2, kmax, d2 = numdiv(k); r = d1 / d2; if(r > rm, rm = r; print1(k-1, ", ")); d1 = d2); }
CROSSREFS
KEYWORD
nonn
AUTHOR
_Amiram Eldar_, Apr 18 2024
STATUS
approved