OFFSET
1,1
COMMENTS
From Darío Clavijo, Mar 05 2025: (Start)
Also, numbers h that can be written as a difference of squares such as h=4*y^2-x^2 where x=2*y-p and y=(p+q)/4 and p<3*q with p and q divisors of h.
a(n) == 0 or 3 (mod 4). (End).
From Darío Clavijo, Apr 22 2025: (Start)
Numbers that can be written in more than one way in the form (j+k) * (3k-j).
Every term is congruent to {0, 3, 4, 7, 11, 12, 15} (mod 16). (End).
LINKS
Project Euler, Problem 135: Same Differences.
EXAMPLE
27 is a term since (6+2*3)^2 - (6+3)^2 - 6^2 = (20+2*7)^2 - (20+7)^2 - 20^2 = 27.
PROG
(Python)
from math import isqrt
def isok(h):
if (h & 15) not in [0, 3, 4, 7, 11, 12, 15]: return False
c = 0
for p in range(1, isqrt(h)+1):
q, r = divmod(h, p)
if r == 0 and (pq := p + q) & 3 == 0:
t = pq >> 2;
c += (t < p) + (p != q and t < q)
if c > 1: return True
print([h for h in range(1, 256) if isok(h)])
CROSSREFS
KEYWORD
nonn
AUTHOR
Darío Clavijo, Jul 12 2023
STATUS
approved
