A279102 Numbers n having three parts in the symmetric representation of sigma(n).
9, 15, 25, 35, 45, 49, 50, 70, 77, 91, 98, 110, 121, 130, 135, 143, 154, 169, 170, 182, 187, 190, 209, 221, 225, 238, 242, 247, 266, 286, 289, 299, 315, 322, 323, 338, 350, 361, 374, 391, 405, 418, 437, 442, 484, 493, 494, 506, 527, 529, 550, 551, 572, 578, 589, 598, 638, 646, 650, 667, 675, 676, 682
Offset: 1
Keywords
Examples
a(4) = 35 = 5*7 is in the sequence since 1 < 2 < 5 < row(35) = 7 < 10; a(8) = 70 = 2*5*7 is in the sequence since 1 < 4 < 5 < row(70) = 11 < 20; 140 = 4*5*7 is not in the sequence since 1 < 5 < 7 < 8 < row(140) = 16 < 20; a(506) = 5950 = 2*25*7*17 is in the sequence since 1*4 < 5 is the only pair of odd divisors 1 < 5 < 7 < 17 < 25 < 35 < 85 < row(5950) = 108 satisfying the property (see A251820).
Crossrefs
Programs
-
Mathematica
(* support functions are defined in A237048 and A262045 *) segmentsSigma[n_] := Length[Select[SplitBy[a262045[n], #!=0&], First[#]!=0&]] a279102[m_, n_] := Select[Range[m, n], segmentsSigma[#]==3&] a279102[1, 700] (* sequence data *) (* An equivalent, but slower computation is based on A237271 *) a279102[m_, n_] := Select[Range[m, n], a237271[#]==3&] a279102[1,700] (* sequence data *)
Comments