The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A304463 a(n) begins the first run of at least n consecutive numbers with the same number of bi-unitary divisors. 2
1, 2, 2, 2, 91, 6850, 6850, 10281, 108771, 171890, 3760204, 3760204, 727940626, 5704384304, 13264434091, 13264434091, 63719307522, 287480681209, 607635436331 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The bi-unitary version of A006558.
a(20) > 5*10^12. - Giovanni Resta, Aug 23 2018
LINKS
EXAMPLE
a(5) = 91 since the number of bi-unitary divisors of 91, 92, 93, 94 and 95 is 4, and this is the first run of 5 consecutive numbers.
MATHEMATICA
bdivnum[1] = 1; bdivnum[n_] := Times @@ ((# + Mod[#, 2]) & /@ Last /@ FactorInteger[n]); Seq[n_, q_] := Map[bdivnum, Range[n, n + q - 1]]; findConsec[q_, nmin_, nmax_] := Module[{}, s = Seq[1, q]; n = q + 1; found = False; Do[If[CountDistinct[s] == 1, found = True; Break[]]; s = Rest[AppendTo[s, bdivnum[n]]]; n++, {k, nmin, nmax}]; If[found, n - q, 0]]; seq = {1}; nmax = 100000000; Do[n1 = Last[seq]; s1 = findConsec[m, n1, nmax]; If[s1 == 0, Break[]]; AppendTo[seq, s1], {m, 2, 13}];
CROSSREFS
Cf. A006558, A045983 (equivalent for unitary divisors), A286324.
Sequence in context: A226745 A102384 A275533 * A066736 A324302 A216668
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Aug 20 2018
EXTENSIONS
a(14)-a(19) from Giovanni Resta, Aug 23 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 15 14:34 EDT 2024. Contains 372540 sequences. (Running on oeis4.)