A380437 Integers with at least 1 proper factorization for which the sum of the squares of the factors is a square, whose square root is also a factor of that number.
16, 108, 192, 240, 256, 300, 576, 768, 864, 960, 1024, 1080, 1152, 1200, 1260, 1296, 1344, 1350, 1458, 1500, 1680, 1836, 2016, 2160, 2304, 2400, 2592, 2688, 2700, 2772, 2800, 2880, 2916, 3024, 3240, 3264, 3344, 3510, 3600, 3780, 3840, 4096, 4400, 4608, 4800
Offset: 1
Keywords
Examples
a(1) = 16: {2, 2, 2, 2} (2 * 2 * 2 * 2 = 16 and sqrt(2^2 + 2^2 + 2^2 + 2^2) = 4, which is also a factor of 16). a(2) = 108: {3, 6, 6} (3 * 6 * 6 = 108 and sqrt(3^2 + 6^2 + 6^2) = 9, which is also a factor of 108). a(3) = 192: {2, 2, 2, 4, 6} (2 * 2 * 2 * 4 * 6 = 192 and sqrt(2^2 + 2^2 + 2^2 + 4^2 + 6^2) = 8, which is also a factor of 192).
Crossrefs
Subset of A380436.
Programs
-
PARI
a380437_count(x, f=List())={my(r=x/if(#f, vecprod(Vec(f)), 1)); if(r==1, my(t=sum(i=1, #f, f[i]^2)); return(if(issquare(t) && x%sqrtint(t)==0, 1, 0))); my(d, c=0); fordiv(r, d, if(d==1 || d==x || (#f && d
Charles L. Hohn, Mar 09 2025
Comments