A362809 Numbers k for which the area of the first part of the symmetric representation of sigma(k) equals sigma(k)/3 and its width is 1.
15, 207, 1023, 2975, 5950, 19359, 147455, 294910, 1207359, 5017599, 2170814463
Offset: 1
Examples
15 belongs to the sequence since SRS(15) consists of the parts {8, 8, 8} of maximum widths {1, 2, 1} and sigma(15) = 24. 294910 belongs to the sequence since SRS(294910) consists of the 5 parts {221184, 109440, 2304, 109440, 221184} of maximum widths {1, 3, 2, 3, 1}, with 109440 + 2304 + 109440 = 211184 and sigma(294910) = 3 * 211184 = 663552. From _Omar E. Pol_, Jul 07 2023: (Start) Illustration of a(1) = 15. The 14th row of triangle A237593 is [8, 3, 1, 2, 2, 1, 3, 8] and the 15th row of the same triangle is [8, 3, 2, 1, 1, 1, 1, 2, 3, 8] so the diagram of the symmetric representation of sigma(15) in the fourth quadrant is constructed as shown below: . _ . | | . | | . | | . | | . | | . | | . | | . _ _ _|_| . _ _| | 8 . | _| . _| _| . |_ _| 8 . | . _ _ _ _ _ _ _ _| . |_ _ _ _ _ _ _ _| . 8 . The area of the first part (or polygon) of the diagram equals sigma(15)/3 = 24/3 = 8 and its width is 1 so 15 is in the sequence. (End)
Programs
-
Mathematica
(* substitute code suggested by Andrey Zabolotskiy *) cd[n_, k_] := Boole[Divisible[n, k]] a237048[s_, j_] := If[OddQ[j], cd[s, j], cd[s-j/2, j]] firstZeroQ[s_, a_] := Sum[(-1)^(j+1)a237048[s, j], {j, a}]==0 evenPart[n_] := 2^IntegerExponent[n, 2] a362809[{m_, n_}] := Module[{a, b}, Select[Range[m, n], (a=evenPart[#]; b=(2a-1)/(2a); DivisorSigma[1, #]==3b(#+a)&&firstZeroQ[#, 2a])&]] a362809[{1, 2170814463}] (* a(11) has a long computation time *)
Comments