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

A224730 Smallest prime q such that 2n+1 = p^3 - 2q for some odd prime p, or 0 if no such prime exists.

Original entry on oeis.org

61, 11, 59, 167, 1093, 7, 1091, 5, 53, 3, 2, 653, 0, 157, 47, 3413, 25309, 647, 43, 151, 41, 149, 25303, 641, 37, 14869, 74411, 14867, 1069, 6053, 31, 139, 29, 137, 1063, 6047, 1061, 3391, 23, 131, 37309189, 51869, 19, 127, 17, 619, 1051, 617, 13, 39703, 11
Offset: 1

Views

Author

Michel Lagneau, Apr 17 2013

Keywords

Comments

See the conjecture and the comments in A185046, and the corresponding primes p.

Examples

			a(4) = 167 because, for (p, q) = (7, 167),  9 = 7^3 - 2*167 = 343 - 334 = 9.
		

Crossrefs

Cf. A185046.

Programs

  • Maple
    for n from 3 by 2 to 200 do:
    jj:=0:
      for j from 1 to 10000 while (jj=0) do:
       p:=ithprime(j):q:=(p^3-n)/2:
        if q> 0 and type(q, prime)=true
        then
        jj:=1:printf(`%d, `, q):
       else
       fi:
      od:
      if jj=0 then
      printf(`%d, `, 0):
      else
      fi:
    od:

A224794 Smallest prime p such that 2n+1 = 2p - q^3 for some odd prime q, or 0 if no such prime exists.

Original entry on oeis.org

173, 2459, 17, 67, 19, 113497, 179, 71, 23, 73, 677, 25339, 0, 74453, 29, 79, 31, 1117, 191, 83, 193, 25349, 37, 1123, 197, 89, 41, 3594557, 43, 1129, 3461, 12227, 47, 97, 701, 647551, 3467, 101, 53, 103, 1124087, 647557, 709, 107, 59, 109, 61, 113539, 6133
Offset: 1

Views

Author

Michel Lagneau, Apr 18 2013

Keywords

Comments

See the odd numbers of the form p^3 - 2q where p and q are primes (A224730, A185046).
a(n) = 0 for n = 13, 62, 171, 364, 665, 1098, ... and 2n+1 = 27, 125, 343, 729, ... are the odd cubes 3^3, 5^3, 7^3, ...
The corresponding primes q are in A224795.
Conjecture: The odd numbers different from a cube are of the form m = 2p - q^3 where p and q are prime numbers.
Remark: if m = c^3 for any odd integer c, then c^3 = 2p - q^3 is impossible because c^3 + q^3 = 2p => (c+q)(c^2 - cq + q^2) with c+q even of the form c+q = 2a => p = a(c^2 - cq + q^2) absurd because p is prime.

Examples

			a(4) = 67 because, for (p, q) = (67, 5), 2*4 + 1 = 9 = 2*67 - 5^3 = 134 - 125 = 9.
		

Crossrefs

Programs

  • Maple
    for n from 3 by 2 to 200 do:jj:=0:for j from 1 to 50000 while (jj=0) do:q:=ithprime(j):p:=(q^3+n)/2:if type(p,prime)=true  then jj:=1: printf(`%d, `,p):else fi:od:if jj=0 then printf(`%d, `,0):else fi:od:

A224795 Smallest prime q such that 2n+1 = 2p - q^3 for some odd prime p, or 0 if no such prime exists.

Original entry on oeis.org

7, 17, 3, 5, 3, 61, 7, 5, 3, 5, 11, 37, 0, 53, 3, 5, 3, 13, 7, 5, 7, 37, 3, 13, 7, 5, 3, 193, 3, 13, 19, 29, 3, 5, 11, 109, 19, 5, 3, 5, 131, 109, 11, 5, 3, 5, 3, 61, 23, 5, 7, 13, 3, 13, 7, 29, 3, 29, 3, 73, 7, 0, 331, 5, 3, 61, 7, 5, 3, 53, 59, 13, 11, 5, 3
Offset: 1

Views

Author

Michel Lagneau, Apr 18 2013

Keywords

Comments

See the conjecture and the comments in A224794, and the corresponding primes p.

Examples

			a(4) = 5 because, for (p, q) = (67, 5),  2*4+1 = 9 = 2*67 - 5^3 = 134 - 125 = 9.
		

Crossrefs

Programs

  • Maple
    for n from 3 by 2 to 200 do:jj:=0:for j from 1 to 50000 while (jj=0) do:q:=ithprime(j):p:=(q^3+n)/2:if type(p,prime)=true  then jj:=1: printf(`%d, `,q):else fi:od:if jj=0 then printf(`%d, `,0):else fi:od:
Showing 1-3 of 3 results.