A375611 Numbers k whose symmetric representation of sigma(k) has at least a part with maximum width 2.
6, 12, 15, 18, 20, 24, 28, 30, 35, 36, 40, 42, 45, 48, 54, 56, 63, 66, 70, 75, 77, 78, 80, 88, 91, 96, 99, 100, 102, 104, 105, 108, 110, 112, 114, 117, 130, 132, 135, 138, 143, 150, 153, 154, 156, 160, 162, 165, 170, 174, 175, 176, 182, 186, 187, 189, 190, 192, 195, 196, 200
Offset: 1
Keywords
Examples
a(4) = 18 has width pattern 1 2 1 2 1 in its symmetric representation of sigma consisting of a single part, and row 18 in the triangle of A249223 is 1 1 2 1 1. a(9) = 35 has width pattern 1 0 1 2 1 0 1 in its symmetric representation of sigma consisting of 3 parts, and row 35 in the triangle of A249223 is 1 0 0 0 1 1 2. Irregular triangle of rows a(n) in triangle of A341970, i.e. of positions of 1's in triangle of A237048, and for the corresponding widths to the diagonal in triangle of A341969: a(n)| row in A341970 left half of row in A341969 6 | 1 3 1 2 12 | 1 3 1 2 15 | 1 2 3 5 1 0 1 2 18 | 1 3 4 1 2 1 20 | 1 5 1 2 24 | 1 3 1 2 28 | 1 7 1 2 30 | 1 3 4 5 1 2 1 2 35 | 1 2 5 7 1 0 1 2 36 | 1 3 8 1 2 1 ...
Crossrefs
Programs
-
Mathematica
eP[n_] := If[EvenQ[n], FactorInteger[n][[1, 2]], 0]+1 sDiv[n_] := Module[{d=Select[Divisors[n], OddQ]}, Select[Union[d, d*2^eP[n]], #<=row[n]&]] mW2Q[n_] := Max[FoldWhileList[#1+If[OddQ[#2], 1, -1]&, sDiv[n], #1<=2&]]==2 a375611[m_, n_] := Select[Range[m, n], mW2Q] a375611[1, 200]
Comments