OFFSET
1,1
COMMENTS
In other words: numbers k such that the symmetric representation of sigma(k) has at least two parts with distinct number of cells.
When the symmetric representation of sigma of m, SRS(m), consists of 2n-1 or 2n parts, n>=1, then at most n parts can be of distinct sizes. For the published terms in A239663, SRS(A239663(n)) consists of n parts representing ceiling(n/2) parts of distinct sizes, n>=1. Only two numbers m are known, 15 and 5950 in A251820, for which SRS(m) consists of n parts of less than ceiling(n/2) distinct sizes. - Hartmut F. W. Hoft, Jan 11 2025
EXAMPLE
The symmetric representation of sigma(9) = 13 in the first quadrant looks like this:
y
.
._ _ _ _ _ 5
|_ _ _ _ _|
. |_ _ 3
. |_ |
. |_|_ _ 5
. | |
. | |
. | |
. | |
. . . . . . . . |_| . . x
.
There are three parts: 5 + 3 + 5 = 13, so 9 is in the sequence because the structure contains at least two parts of distinct size.
From Hartmut F. W. Hoft, Jan 11 2025: (Start)
SRS(a(1)) = SRS(A239663(3)) = SRS(9) = { 5, 3, 5 } is the smallest with 2 parts of distinct sizes.
SRS(a(14)) = SRS(A239663(5)) = SRS(63) = { 32, 12, 16, 12, 32 } is the smallest with 3 parts of distinct sizes.
SRS(a(127)) = SRS(A239663(7)) = SRS(357) = { 179, 61, 29, 38, 29, 61, 179 } is the smallest with 4 parts of distinct sizes. (End)
MATHEMATICA
(* Function partsSRS[ ] is defined in A377654 *)
a266000[n_] := Select[Range[n], Length[Union[partsSRS[#]]]>=2&]
a266000[200] (* Hartmut F. W. Hoft, Jan 11 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Dec 19 2015
EXTENSIONS
Extended from a(37) to a(62) by Hartmut F. W. Hoft, Jan 11 2025
STATUS
approved