A338488 Numbers n whose symmetric representation of sigma(n) has a maximum width of 2 that occurs exactly once (at the diagonal).
6, 15, 28, 91, 153, 190, 325, 496, 703, 861, 946, 1431, 1891, 2278, 2701, 3655, 4753, 5151, 5356, 5995, 6441, 7381, 8128, 8911, 9453, 10585, 11476, 12403, 13366, 15051, 18721, 21115, 22366, 23653
Offset: 1
Keywords
Examples
a(5) = 153 = 17*3^2 is in the sequence and in the 5-column of the table since 1 < 2 < 3 < 6 < 3^2 < 17 = row(153) < 2*3^2 representing the 6 odd divisors 1 - 153 - 3 - 51 - 9 - 17 (see A237048) results in the following pattern for the widths of its 17 legs (see A249223): 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2 for 5 regions with a single unit of width 2. a(6) = 190 = 2*5*19 is in the sequence and in the 3-column of the table since 1 < 4 < 5 < 19 = row(190) < 4*5 representing the 4 odd divisors 1 - 190 - 5 - 19 results in the following pattern for the widths of its 19 legs: 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2 for 3 regions with a single unit of width 2. Number 66 = 2*3*11 is not in the sequence since positions 1 < 3 < 4 < 11 = row(66) < 4*3 representing the 4 odd divisors 1 - 3 - 33 - 11 violate the condition 4 = 4*d_1 < d_2 = 3; its symmetric representation of sigma consists of a single region in which the third leg and its symmetric copy have width 2 in addition to a single unit of width 2 at the diagonal.
Crossrefs
Programs
-
Mathematica
(* function path[] and support functions are defined in A237270 *) a338488[m_, n_] := Module[{p0=path[m-1], p1, k, srs, w2, list={}}, For[k=m, k<=n, k++, p1=path[k]; srs=Map[#[[1]]-#[[2]]&, Transpose[{Drop[Drop[p1, 1], -1], p0}]]; w2=Length[Select[srs, #=={2, 2}&]]; If[Max[srs]==2&&w2==1, AppendTo[list, k]]; p0=p1]; list] a338488[1,25000] (* sequence data *)
Comments