login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A371597 a(n) is the sum of k where A063655(k) = n. 1

%I #7 Apr 24 2024 13:22:22

%S 0,1,2,7,6,22,22,38,52,70,58,141,104,188,230,281,260,320,374,531,526,

%T 717,566,927,756,1017,1114,1203,1148,1799,1402,1741,1718,2170,2314,

%U 2765,2400,2912,2800,3769,2856,4577,3352,4923,4410,5054,5036,6346,6246,5537

%N a(n) is the sum of k where A063655(k) = n.

%C Construct the same directed graph as in A369793. a(n) is the sum of vertices directed to the vertex n in this graph.

%e a(1) = 0 since 1 does not exist in A063655.

%e a(2) = 1 because there is only one integral rectangle of area 1 with a minimal semiperimeter 2, which is the 1 X 1 square. So 2 appears only once in A063655 at index 1, which means a(2) = 1.

%e a(4) = 7, because only A063655(3) and A063655(4) have the value 4. For any n > 4, A063655(n) > 4, because A063655(n) > 2 * sqrt(n) > 2 * sqrt(4) = 4. Hence, 4 cannot appear in the rest of A063655.

%o (Python)

%o from sympy import divisors

%o def A371597(n): return sum(m for m in range(1, (n**2>>2)+1) if (d:=divisors(m))[((l:=len(d))-1)>>1]+d[l>>1]==n)

%Y Cf. A056737, A063655, A369110, A369793.

%K nonn

%O 1,3

%A _Adnan Baysal_, Mar 28 2024

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 26 05:11 EDT 2024. Contains 373715 sequences. (Running on oeis4.)