OFFSET
1,2
COMMENTS
Every term of A229240 is a term of this sequence.
Also, union of positive integers satisfying Hurwitz equation (x_1)^2 + (x_2)^2 + ... + (x_n)^2 = z * x_1 * x_2 * ... * x_n for z=1 and n=5.
EXAMPLE
{1259,35,4,3,3} is a solution and that is why 3,4,35,1259 belong to the sequence.
MATHEMATICA
div={1, 3}; limit=10^4; Monitor[Do[m=div[[{a, b, c, d}]]; m1=Times@@m; m2=Tr[m^2]; s=Sqrt[m1^2-4m2]; x1=(m1-s)/2; x2=(m1+s)/2; If[IntegerQ[x1]&&x2<limit, AppendTo[div, {x1, x2}]]; div=Union@Flatten@div, {n, 5}, {a, l=Length@div}, {b, a}, {c, b}, {d, c}], {"stops when", l-a, "is equal to 0"}]; div
CROSSREFS
KEYWORD
nonn
AUTHOR
Giorgos Kalogeropoulos, Oct 18 2020
STATUS
approved