A225756 Runs of consecutive numbers with the same number of divisors.
2, 3, 14, 15, 21, 22, 26, 27, 33, 34, 35, 38, 39, 44, 45, 57, 58, 75, 76, 85, 86, 87, 93, 94, 95, 98, 99, 104, 105, 116, 117, 118, 119, 122, 123, 133, 134, 135, 136, 141, 142, 143, 145, 146, 147, 148, 158, 159, 171, 172, 177, 178, 189, 190, 201, 202, 203
Offset: 1
Examples
Sequence begins: 2, 3; 14, 15; 21, 22; 26, 27; 33, 34, 35; 38, 39; etc.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
sel = Select[Range[300], DivisorSigma[0, #] == DivisorSigma[0, # + 1] &]; Union[sel, sel + 1] Flatten[SequencePosition[DivisorSigma[0,Range[300]],{x_,x_}]]//Union (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, May 22 2021 *)
Comments