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.

A147857 Differences of two positive 4th powers.

Original entry on oeis.org

0, 15, 65, 80, 175, 240, 255, 369, 544, 609, 624, 671, 1040, 1105, 1215, 1280, 1295, 1695, 1776, 2145, 2320, 2385, 2400, 2465, 2800, 3439, 3471, 3840, 4015, 4080, 4095, 4160, 4641, 5265, 5904, 5936, 6095, 6305, 6480, 6545, 6560, 7599, 7825, 8080, 8704
Offset: 1

Views

Author

Max Alekseyev, Nov 15 2008, Nov 19 2008

Keywords

Comments

If n belongs to this sequence then so does n*m^4 for any positive integer m. Primitive elements (i.e., not of the form n*m^4 for m>1) are listed in A147858.
There is no square in this sequence except 0. - Altug Alkan, Apr 08 2016

Crossrefs

Subsequence of A152044.

Programs

  • Maple
    N:= 10^4: # to get all terms <= N
    Res:= {0}:
    for a from 1 to floor(sqrt(N-2)) do
      if a^4 > N then bmin:= ceil((a^4-N)^(1/4)) else bmin:= 1 fi;
      Res:= Res union {seq(a^4-b^4, b=bmin..a-1)}
    od:
    sort(convert(Res,list)); # Robert Israel, Sep 28 2018
  • Mathematica
    nn = 50; Take[Union @@ Map[Differences, Union@ Map[Sort@ # &, Tuples[Range[Ceiling[nn/3]], {2}]]^4], nn] (* Michael De Vlieger, Apr 09 2016 *)

Extensions

Offset changed by Robert Israel, Sep 28 2018

A147856 Positive integers n such that n^2 = (x^4 - y^4)*(z^4 - t^4) where x>y and z>t are distinct pairs of integers with gcd(x,y)=gcd(z,t)=1.

Original entry on oeis.org

520, 975, 2040, 3567, 7215, 7800, 9840, 13920, 19680, 30160, 40545, 53040, 57720, 62985, 95120, 108225, 138040, 151320, 180960, 230880, 247520, 286200, 289952, 352495, 473280, 535353, 546975, 720945, 769600, 1048560, 1141920, 1210560
Offset: 1

Views

Author

Max Alekseyev, Nov 18 2008

Keywords

Comments

Positive integers n such that n^2 = A147858(m)*A147858(k) for positive integers kA147854: any element n of A147854 is of the form a(k)*s^2 for some positive integer s.
4*A196289(2*k) and A196289(2*k+1) belong to this sequence.

A147858 Differences of two coprime 4th powers.

Original entry on oeis.org

0, 15, 65, 80, 175, 255, 369, 544, 609, 624, 671, 1105, 1295, 1695, 1776, 2145, 2320, 2385, 2400, 2465, 3439, 3471, 4015, 4095, 4160, 4641, 5936, 6095, 6305, 6545, 6560, 7599, 7825, 8080, 9855, 9919, 9999, 10545, 12209, 12240, 13345, 13920, 14016
Offset: 0

Views

Author

Max Alekseyev, Nov 15 2008

Keywords

Comments

Primitive elements of A147857: any element n of A147857 is of the form a(k)*m^4 for some positive integer m.

Crossrefs

Programs

  • Mathematica
    Join[{0},Rest[#[[2]]-#[[1]]&/@Select[Subsets[Range[0,20]^4,{2}], CoprimeQ@@#&] //Union]] (* Harvey P. Dale, Dec 08 2016 *)
Showing 1-3 of 3 results.