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-5 of 5 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

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

A027565 Largest number not of form k_1 k_2 .. k_n (1/k_1 + .. + 1/k_n), k_i integers >= 1.

Original entry on oeis.org

1, 462, 52061, 33952307
Offset: 2

Author

Keywords

Examples

			For n=2, the largest number not of the form k_1+k_2 with k_1>=1, k_2>=1 is 1! So a(2) = 1. For n=3 the largest number not of the form ab+bc+ca (a,b,c >= 1) is believed to be 462 (see A025052).
		

Crossrefs

See A025052 for numbers of form ab+bc+ca (which is the case n=3), A027563 for n=4, A027564 for n=5. See also A027566.

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

A179797 Numbers not of the form abc + abd + acd + bcd, with 0 < a < b < c < d.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75
Offset: 1

Author

T. D. Noe, Aug 02 2010

Keywords

Comments

This sequence appears to contain 764 terms, ending with 181799. Complement of A179796.

Crossrefs

Cf. A027563 (which allows equality)

Programs

  • Mathematica
    nn=1000000; lim=Floor[nn^(1/3)]; cnt=Table[0,{nn}]; Do[k1=a*b*c; k2=a*b+a*c+b*c; d=0; While[d++; n=k1+k2*d; n<=nn, If[d!=a && d!=b && d!=c, cnt[[n]]=1]], {a,lim}, {b,a+1,Floor[Sqrt[nn/a]]}, {c,b+1,Floor[nn/a/b]}]; Flatten[Position[cnt,0]]
Showing 1-5 of 5 results.