A244969 Duplicate of A090196.
15, 35, 45, 63, 75, 77, 91, 99, 105, 117, 135, 143, 153, 165, 175, 187, 189, 195, 209, 221, 225, 231, 245, 247, 255, 273, 285, 297, 299, 315, 323, 325, 345, 351, 357, 375, 385, 391, 399, 405, 425
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
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
(* 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 *)
15 is in the sequence since 15 = 6+9 where 9 | 6*15 = 90.
filter:= proc(n) nops(select(t -> t >= n/2 and t < n, numtheory:-divisors(n^2)))>=1 end proc: select(filter, [$1..300]); # Robert Israel, Jan 08 2025
f(n) = sum(s=1, n\2, !((s*n)%(n-s))); \\ A338021 isok(k) = f(k) >= 1; \\ Michel Marcus, Jan 17 2022
k = 15 = 6 + 9 = s + t is in the sequence (t = 9 | 6*15 = 90 = s*k) but no proper divisor of 15 has this property.
Comments