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.

Showing 1-2 of 2 results.

A213686 Numbers which are the values of the quadratic polynomial 13+20*t+24*k+32*k*t at nonnegative integers.

Original entry on oeis.org

13, 33, 37, 53, 61, 73, 85, 89, 93, 109, 113, 133, 141, 145, 153, 157, 173, 181, 193, 201, 205, 213, 229, 233, 245, 253, 257, 273, 277, 293, 297, 301, 313, 317, 325, 333, 349, 353, 369, 373, 393, 397, 401, 405, 413, 421, 425, 433, 445, 453, 469, 473, 481
Offset: 1

Views

Author

Michel Mizony, Jun 17 2012

Keywords

Comments

For all these numbers a(n) we have the following Erdos-Straus decomposition: 4/p=4/(13+24*k+20*t+32*k*t) = 1/(6*k+8*k*t+4+6*t) + 1/((13+24*k+20*t+32*k*t)*(5+8*k)*(3*k+4*k*t+2+3*t)) + 1/(2*(5+8*k)*(3*k+4*k*t+2+3*t)).
Moreover this sequence is related to irreducible twin Pythagorean triples: the associated Pythagorean triple is [2n(n+1),2n+1,2n(n+1)+1], where n=2+4k.
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).
For the solution (x,y,z) having the largest z value, see (A075245, A075246, A075247).

Examples

			For n=12 the a(12)=133  solutions are {k = 0, t = 6},{k = 5, t = 0}.
		

References

  • I. Gueye and M. Mizony : Recent progress about Erdős-Straus conjecture, B SO MA S S, Volume 1, Issue 2, pp. 6-14.
  • M. Mizony and I. Gueye : Towards the proof of Erdős-Straus conjecture, B SO MA S S, Volume 1, Issue 2,p pp 141-150.

Crossrefs

Cf. A213340 (the quadratic polynomial 5+8t+12k+16kt).
Cf. A001844 (centered square numbers: 2n(n+1)+1).
Cf. A005408 (x values), A046092 (y values).
Cf. A073101 (number of solutions (x,y,z) to 4/n = 1/x + 1/y + 1/z satisfying 0 < x < y < z).

Programs

  • Maple
    G:=(n,p)->4/p = [2*(2*n+1)/(n*p+p+1), 4/p/(n*p+p+1), 2/(n*p+p+1)]:
    cousin:=proc(p)
    local n;
    for n from 0 to 300 do
    if n*p+p+1 mod 4*(2*n+1)=0 then return([p,n,G(n,p)]);fi:
    od:
    end:
    L:=NULL:for m to 400 do L:=L,cousin(4*m+1): od:{L}[1..4];map(u->op(1,u),{L});

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

Original entry on oeis.org

3, 7, 10, 11, 15, 17, 19, 22, 23, 24, 27, 31, 34, 35, 37, 38, 39, 43, 45, 46, 47, 51, 52, 55, 57, 58, 59, 63, 66, 67, 70, 71, 73, 75, 77, 79, 80, 82, 83, 87, 91, 94, 95, 97, 99, 101, 103, 106, 107, 108, 111, 112, 115, 117, 118, 119, 122, 123, 126, 127, 129
Offset: 1

Views

Author

Michel Mizony, Jun 18 2012

Keywords

Comments

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));
Moreover this sequence is related to irreducible twin Pythagorean triples: the associated Pythagorean triple is [2t(t+1),2t+1, 2t(t+1)+1].
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).
For the solution (x,y,z) having the largest z value, see (A075245, A075246, A075247).

Examples

			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}.
		

References

  • I. Gueye and M. Mizony, Recent progress about Erdős-Straus conjecture, B SO MA S S, Volume 1, Issue 2, pp. 6-14.
  • 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.

Crossrefs

Cf. A213340 (the quadratic polynomial 5+8t+12k+16kt).
Cf. A001844 (centered square numbers: 2n(n+1)+1).
Cf. A005408 (x values), A046092 (y values).
Cf. A073101 (number of solutions (x,y,z) to 4/n = 1/x + 1/y + 1/z satisfying 0 < x < y < z).

Programs

  • Maple
    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))]:
    cousin:=proc(p)
    local n,k;
    for n from 0 to (p-3)/7 do
    if (p-3-7*n) mod (4+8*n)=0  then k:=(p-3-7*n)/(4+8*n):
    return([p,n,H(k,n)]) fi;od;
    end:
    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});
Showing 1-2 of 2 results.