A295422 a(n) = size of the middle part, i.e., the part closest to or crossing the diagonal, in the symmetric representation of sigma(n).
1, 3, 2, 7, 3, 12, 4, 15, 3, 9, 6, 28, 7, 12, 8, 31, 9, 39, 10, 42, 5, 18, 12, 60, 5, 21, 6, 56, 15, 72, 16, 63, 7, 27, 12, 91, 19, 30, 8, 90, 21, 96, 22, 42, 32, 36, 24, 124, 7, 15, 10, 49, 27, 120, 8, 120, 11, 45, 30, 168, 31, 48, 16, 127, 9, 144, 34, 63, 13, 36, 36, 195, 37, 57, 24
Offset: 1
Keywords
Examples
a(9) = 3; see the Example in A241558. a(16) = 31 since its symmetric representation of sigma has one part of width one. a(41) = 21 since for any odd prime number p, row p of A237270 consists of the two parts: {(p+1)/2, (p+1)/2}. a(50) = 15 since its symmetric representation of sigma has the three parts 39, 15, and 39.
Programs
-
Mathematica
(* function a237270 and its support are defined in A237270 *) a295422[n_] := Module[{a=a237270[n]}, a[[Ceiling[Length[a]/2]]]] Map[a295422, Range[75]] (* data *)
Comments