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”).

A349262
a(n) is the start of the least run of exactly n consecutive numbers with the same value of A349258.
0
1, 14, 20, 2, 91, 6850, 2302, 141, 56014, 184171, 2800171, 27805034, 35297611, 8313366182, 1791416073, 3618621410
OFFSET
1,2
COMMENTS
a(17) > 10^11, if it exists.
EXAMPLE
a(2) = 14 since A349258(14) = A349258(15) = 2, but A349258(13) != 2 and A349258(16) != 2.
MATHEMATICA
f[p_, e_] := 2^DigitCount[e, 2, 1] - 1; d[1] = 0; d[n_] := Plus @@ f @@@ FactorInteger[n]; seq[len_, nmax_] := Module[{s = Table[0, {len}], dprev = 0, n = 2, c = 1, k = 1}, s[[1]] = 1; While[k < len && n < nmax, d1 = d[n]; If[d1 == dprev, c++, If[c > 0 && c <= len && s[[c]] == 0, k++; s[[c]] = n - c]; c = 1]; n++; dprev = d1]; TakeWhile[s, # > 0 &]]; seq[8, 10^4]
CROSSREFS
Cf. A349258.
Similar sequences: A006558, A045983, A048932, A067813, A077657, A318166.
Sequence in context: A092768 A144080 A006576 * A083247 A255346 A074851
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Nov 12 2021
STATUS
approved