cp's OEIS Frontend

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.

A213687 Numbers which are the values of the quadratic polynomial 3+4*k+7*t+8*k*t on nonnegative integers.

This page as a plain text file.
%I A213687 #22 Feb 19 2025 01:03:36
%S A213687 3,7,10,11,15,17,19,22,23,24,27,31,34,35,37,38,39,43,45,46,47,51,52,
%T A213687 55,57,58,59,63,66,67,70,71,73,75,77,79,80,82,83,87,91,94,95,97,99,
%U A213687 101,103,106,107,108,111,112,115,117,118,119,122,123,126,127,129
%N A213687 Numbers which are the values of the quadratic polynomial 3+4*k+7*t+8*k*t on nonnegative integers.
%C A213687 For all these numbers a(n) we have the following Erdos-Straus decomposition: 4/p = 4/(3+4*k+7*t+8*k*t) = 1/(2*(3+4*k+7*t+8*k*t)*(1+k)) + 1/((1+k)*(2*t+1)) + 1/(2*(1+k)*(2*t+1)*(3+4*k+7*t+8*k*t));
%C A213687 Moreover this sequence is related to irreducible twin Pythagorean triples: the associated Pythagorean triple is [2t(t+1),2t+1, 2t(t+1)+1].
%C A213687 In 1948 Erdos and Straus conjectured that for any positive integer n >= 2 the equation 4/n = 1/x + 1/y +1/z has a solution with positive integers x, y and z (without the additional requirement 0 < x < y < z).
%C A213687 For the solution (x,y,z) having the largest z value, see (A075245, A075246, A075247).
%D A213687 I. Gueye and M. Mizony, Recent progress about Erdős-Straus conjecture, B SO MA S S, Volume 1, Issue 2, pp. 6-14.
%D A213687 M. Mizony and I. Gueye, Towards the proof of Erdős-Straus conjecture, B SO MA S S, Volume 1, Issue 2, pp. 141-150.
%H A213687 P. Erdős, <a href="https://www.renyi.hu/~p_erdos/1950-02.pdf">On a Diophantine equation</a>, (Hungarian. Russian, English summaries), Mat. Lapok 1, 1950, pp. 192-210.
%H A213687 M. Mizony and M.-L. Gardes, <a href="http://math.univ-lyon1.fr/~mizony/SurErdos_Straus2.pdf">Sur la conjecture d'Erdős et Straus</a>, see pages 14-17.
%H A213687 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/TwinPythagoreanTriple.html">Twin Pythagorean Triple</a>
%H A213687 K. Yamamoto, <a href="http://dx.doi.org/10.2206/kyushumfs.19.37">On the Diophantine Equation 4/n=1/x+1/y+1/z</a>, Mem. Fac. Sci. Kyushu U. Ser. A 19, 37-47, 1965.
%e A213687 31 is a term because the solutions to 3+4*k+7*t+8*k*t = 31 are {k = 0, t = 4}, {k = 7, t = 0}.
%p A213687 H:=(k, t) -> 4/(3+4*k+7*t+8*k*t) = [1/2*1/((3+4*k+7*t+8*k*t)*(1+k)), 1/((1+k)*(2*t+1)), 1/2*1/((1+k)*(2*t+1)*(3+4*k+7*t+8*k*t))]:
%p A213687 cousin:=proc(p)
%p A213687 local n,k;
%p A213687 for n from 0 to (p-3)/7 do
%p A213687 if (p-3-7*n) mod (4+8*n)=0  then k:=(p-3-7*n)/(4+8*n):
%p A213687 return([p,n,H(k,n)]) fi;od;
%p A213687 end:
%p A213687 L:=NULL:for p from 2 to 500 do L:=L,cousin(p): od:{L}[1..10];map(u->op(1,u),{L});map(u->op(2,u),{L});
%Y A213687 Cf. A213340 (the quadratic polynomial 5+8t+12k+16kt).
%Y A213687 Cf. A001844 (centered square numbers: 2n(n+1)+1).
%Y A213687 Cf. A005408 (x values), A046092 (y values).
%Y A213687 Cf. A073101 (number of solutions (x,y,z) to 4/n = 1/x + 1/y + 1/z satisfying 0 < x < y < z).
%K A213687 nonn
%O A213687 1,1
%A A213687 _Michel Mizony_, Jun 18 2012