OFFSET
1,1
COMMENTS
Every number in this sequence has the form 2^(2*i + 1) * k^(2*j), i, j >= 0, k >= 1.
The number of 1's in row a(n) of the triangle in A237048 as well as the length of that row are odd.
EXAMPLE
a(4) = 32 has 4 as its single middle divisor, and its symmetric representation of sigma consists of one part of width 1.
a(5) = 50 has 5 as its single middle divisor, and its symmetric representation of sigma consists of three parts of width 1.
a(9) = 200 = 2^3 * 5^2 has 10 = 2 * 5 as its single middle divisor, and its symmetric representation of sigma consists of one part of maximum width 2 (A250068), but has width 1 at the diagonal.
a(39) = 6050 = 2^1 * 5^2 * 11^2 has 55 as its single middle divisor; it is the first number in the sequence whose symmetric representation of sigma consists of 3 parts and its central part has maximum width 2, but has width 1 at the diagonal.
MATHEMATICA
(* Function a249223[ ] is defined in A320137 *)
a361905[n_] := Select[Range[n], IntegerQ[#/Sqrt[#/2]]&&Last[a249223[#]]==1&]
a361905[10000]
CROSSREFS
KEYWORD
nonn
AUTHOR
Hartmut F. W. Hoft, Mar 28 2023
STATUS
approved