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-4 of 4 results.

A025052 Numbers not of form ab + bc + ca for 1<=a<=b<=c (probably the list is complete).

Original entry on oeis.org

1, 2, 4, 6, 10, 18, 22, 30, 42, 58, 70, 78, 102, 130, 190, 210, 330, 462
Offset: 1

Views

Author

Keywords

Comments

According to Borwein and Choi, if the Generalized Riemann Hypothesis is true, then this sequence has no larger terms, otherwise there may be one term greater than 10^11. - T. D. Noe, Apr 08 2004
Note that n+1 must be prime for all n in this sequence. - T. D. Noe, Apr 28 2004
Borwein and Choi prove (Theorem 6.2) that the equation N=xy+xz+yz has an integer solution x,y,z>0 if N contains a square factor and N is not 4 or 18. In the following simple proof explicit solutions are given. Let N=mn^2, m,n integer, m>0, n>1. If n3: x=6, y=n-3, z=n^2-4n+6. If n>m+1: if n=0 (mod m+1): x=m+1, y=m(m+1), z=m(n^2/(m+1)^2-1), if n=k (mod m+1), 0

Crossrefs

Subsequence of A000926 (numbers not of the form ab+ac+bc, 0A006093.
Cf. A093669 (numbers having a unique representation as ab+ac+bc, 0A093670 (numbers having a unique representation as ab+ac+bc, 0<=a<=b<=c).

Programs

  • Mathematica
    n=500; lim=Ceiling[(n-1)/2]; lst={}; Do[m=a*b+a*c+b*c; If[m<=n, lst=Union[lst, {m}]], {a, lim}, {b, lim}, {c, lim}]; Complement[Range[n], lst]

Extensions

Corrected by R. H. Hardin

A027563 Numbers not of form abc + abd + acd + bcd for 1<=a<=b<=c<=d.

Original entry on oeis.org

1, 2, 3, 5, 6, 8, 9, 11, 14, 15, 18, 21, 23, 26, 29, 30, 33, 35, 41, 48, 51, 53, 63, 65, 74, 75, 86, 89, 90, 98, 111, 113, 119, 125, 131, 141, 155, 158, 173, 179, 191, 209, 210, 233, 239, 251, 254, 273, 285, 293, 321, 323, 326, 338, 341, 345, 363, 419
Offset: 1

Author

Keywords

Comments

This list is conjecturally complete, but this has not been proved. It may be complete as a consequence of the Generalized Riemann Hypothesis; see comments for A025052. - Harry Richman, Jan 09 2025

Crossrefs

Cf. A025052 (3 variables), A027564 (5 variables), A027565, A027566.

A027564 Numbers not of form abcd + abce + abde + acde + bcde for 1 <= a <= b <= c <= d <= e.

Original entry on oeis.org

1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 18, 19, 20, 22, 24, 26, 27, 31, 32, 34, 35, 36, 38, 39, 42, 46, 47, 50, 54, 55, 59, 60, 62, 66, 67, 70, 71, 75, 78, 84, 87, 90, 92, 94, 98, 99, 102, 104, 106, 110, 111, 115, 116, 119, 122, 126, 127, 130, 131, 132, 138
Offset: 1

Author

Keywords

Crossrefs

Cf. A025052 (3 variables), A027563 (4 variables), A027565, A027566.

Programs

  • Maple
    N := 1000: # for all terms <= N
    V:= Vector(N):
    for a from 1 to floor((N/5)^(1/4)) do
      for b from a while 4*a*b^3+b^4<= N do
        for c from b while 3*a*b*c^2 + (a+b)*c^3 <= N do
          for d from c while 2*a*b*c*d + (b*c+a*c+a*b)*d^2 <= N do
            for e from d do
              r:= a*b*c*d+a*b*c*e+a*b*d*e+a*c*d*e+b*c*d*e;
              if r > N then break fi;
              V[r]:= 1;
    od od od od od:
    select(t -> V[t]=0, [$1..N]); # Robert Israel, Nov 04 2018

A027566 Number of numbers not of form k_1 k_2 .. k_n (1/k_1 + .. + 1/k_n), k_i >= 1.

Original entry on oeis.org

1, 18, 126, 1652
Offset: 2

Author

Keywords

Crossrefs

Showing 1-4 of 4 results.