A244579 Numbers k with the property that the number of parts in the symmetric representation of sigma(k) equals the number of divisors of k.
1, 3, 5, 7, 9, 11, 13, 17, 19, 21, 23, 25, 27, 29, 31, 33, 37, 39, 41, 43, 47, 49, 51, 53, 55, 57, 59, 61, 65, 67, 69, 71, 73, 79, 81, 83, 85, 87, 89, 93, 95, 97, 101, 103, 107, 109, 111, 113, 115, 119, 121, 123, 125, 127, 129, 131, 133, 137, 139, 141, 145
Offset: 1
Keywords
Examples
9 is in the sequence because the parts of the symmetric representation of sigma(9) are [5, 3, 5] and the divisors of 9 are [1, 3, 9] and in both cases there is the same number of elements: A237271(9) = A000005(9) = 3. See the link for a diagram of the symmetric representations of sigma for sequence data listed above. The symmetric representations of sigma(a(35)) = sigma(81) = sigma(3^4) consists of 5 regions whose areas are [41, 15, 9, 15, 41] and computed as 41 = (3^4+3^0)/2, 15 = (3^3+3^1)/2, and 9 = 3^2 for the central area. Observe also that the 81st row in triangle A237048 is [ 1 1 1 0 0 1 0 0 1 0 0 0 ] with the 1's in positions 1, 2, 3, 6, and 9. This is the largest count for the symmetric regions of sigma shown in the diagram. - _Hartmut F. W. Hoft_, Oct 11 2015
Links
- Hartmut F. W. Hoft, Illustration of the symmetric representations of sigma for sequence data
Crossrefs
Programs
-
Mathematica
(* Function a237270[] is defined in A237270 *) a244579[m_, n_] := Select[Range[m,n], Length[a237270[#]] == Length[Divisors[#]]&] a244579[1, 150] (* data *) (* Hartmut F. W. Hoft, Sep 19 2014 *) (* alternative function using the divisor property *) divisorPairsQ[n_] := Module[{d=Divisors[n]}, Select[2*Most[d] - Rest[d], # >= 0&] == {}] a244579Alt[m_?OddQ, n_] := Select[Range[m, n, 2], divisorPairsQ] a244579Alt[1, 145] (* data *) (* Hartmut F. W. Hoft, Oct 11 2015 *)
Comments