login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A303693
a(n) begins the first run of least n consecutive numbers whose sum of divisors has the same set of distinct prime divisors.
1
1, 5, 33, 3777, 20154, 13141793, 11022353993
OFFSET
1,2
COMMENTS
a(n) is the least k such that rad(sigma(k)) = rad(sigma(k+1)) = ... = rad(sigma(k+n-1)), where rad(n) is the squarefree kernel of n (A007947) and sigma(n) is the sum of the divisors of n (A000203).
EXAMPLE
a(4) = 3777 since it is the least number such that
sigma(3777) = 5040 = 2^4 * 3^2 * 5 * 7,
sigma(3778) = 5670 = 2^1 * 3^4 * 5 * 7,
sigma(3779) = 3780 = 2^2 * 3^3 * 5 * 7,
sigma(3780) = 13440 = 2^7 * 3^1 * 5 * 7,
all having the same set of prime divisors: 2, 3, 5, 7.
MATHEMATICA
rad[n_] := Times @@ (First@# & /@ FactorInteger@n); radsig[n_] := rad[ DivisorSigma[1, n] ]; Seq[n_, q_] := Map[rsig, Range[n, n + q - 1]];
findConsec[q_, nmin_, nmax_] := Module[{}, s = Seq[1, q]; n = q + 1; Do[If[CountDistinct[s] == 1, Break[]]; s = Rest[AppendTo[s, radsig[n]]]; n++, {k, nmin, nmax}]; n - q]; seq = {1}; nmax = 10^10; Do[n1 = Last[ seq ]; s1 = findConsec[m, n1, nmax]; AppendTo[seq, s1], {m, 2, 6}]; seq
CROSSREFS
Sequence in context: A145505 A276126 A193325 * A256373 A124936 A213063
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Apr 28 2018
EXTENSIONS
a(7) from Giovanni Resta, May 04 2018
STATUS
approved