OFFSET
1,2
COMMENTS
LINKS
Jinyuan Wang, Table of n, a(n) for n = 1..1000
EXAMPLE
For n = 9 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] and the smallest part is 3 so a(9) = 3.
For n = 45 the symmetric representation of sigma(45) = 78 has three parts [23, 32, 23] and the smallest part is 23 so a(45) = 23.
For n = 63 the symmetric representation of sigma(63) = 104 has five parts [32, 12, 16, 12, 32] and the smallest part is 12 so a(63) = 12.
MATHEMATICA
(* Function a237270[] is defined in A237270 *)
a241558[n_]:=Min[a237270[n]]
Map[a241558, Range[64]] (* data *)
(* Hartmut F. W. Hoft, Sep 19 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus and Omar E. Pol, Apr 29 2014
EXTENSIONS
More terms from Jinyuan Wang, Feb 14 2020
STATUS
approved