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.

Previous Showing 31-40 of 48 results. Next

A192528 Monotonic ordering of set S generated by these rules: if x and y are in S then 5xy-x-y is in S, and 1 is in S.

Original entry on oeis.org

1, 3, 11, 39, 43, 151, 155, 171, 543, 583, 599, 603, 619, 683, 2095, 2111, 2167, 2171, 2311, 2331, 2391, 2395, 2411, 2475, 2731, 7527, 7599, 8143, 8159, 8303, 8359, 8379, 8383, 8439, 8443, 8663, 8667, 8683, 9159, 9223, 9243, 9323, 9559, 9563
Offset: 1

Views

Author

Clark Kimberling, Jul 03 2011

Keywords

Crossrefs

Cf. A192476.

Programs

  • Mathematica
    start = {1}; f[x_, y_] := 5 x*y - x - y
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          100000 &]];
    t = NestList[b, start, 12][[-1]] (* A192528 *)
    Table[t[[i]] - t[[i - 1]], {i, 2, Length[t]}] (* differences *)

A192535 Monotonic ordering of set S generated by these rules: if x and y are in S then x^2+y^2+xy is in S, and 1 is in S.

Original entry on oeis.org

1, 3, 13, 27, 183, 217, 507, 757, 819, 1249, 2187, 33673, 34047, 36037, 39159, 47307, 47749, 50079, 53677, 100467, 120289, 141267, 257557, 258579, 263809, 271467, 383319, 414157, 573807, 575329, 583059, 594217, 671581, 673227, 681577
Offset: 1

Views

Author

Clark Kimberling, Jul 04 2011

Keywords

Comments

See A192476.

Crossrefs

Cf. A192476.

Programs

  • Mathematica
    start = {1}; f[x_, y_] := x^2 + y^2 + x*y
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          2000000 &]];
    t = FixedPoint[b, start] (* A192535 *)

A192536 Monotonic ordering of set S generated by these rules: if x and y are in S then x^2+y^2-floor(xy/2) is in S, and 1 is in S.

Original entry on oeis.org

1, 2, 4, 6, 15, 16, 24, 34, 40, 54, 211, 214, 216, 219, 240, 244, 249, 338, 361, 384, 540, 544, 556, 565, 621, 640, 864, 1090, 1104, 1126, 1140, 1324, 1516, 1525, 1536, 1564, 1581, 1696, 1734, 2076, 2400, 2736, 2740, 2790, 2824, 2844, 2866, 2890, 3154
Offset: 1

Views

Author

Clark Kimberling, Jul 04 2011

Keywords

Comments

See A192476.

Crossrefs

Cf. A192476.

Programs

  • Mathematica
    start = {1}; f[x_, y_] := x^2 + y^2 - Floor[x*y/2]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          20000 &]];
    t = FixedPoint[b, start] (* A192536 *)

A192539 Monotonic ordering of set S generated by these rules: if x and y are in S then 2xy+floor(xy/2) is in S, and 1 is in S.

Original entry on oeis.org

1, 2, 5, 10, 12, 25, 30, 50, 60, 62, 75, 125, 150, 155, 187, 250, 300, 310, 312, 360, 375, 387, 467, 625, 750, 775, 780, 900, 935, 937, 967, 1167, 1250, 1500, 1550, 1560, 1562, 1800, 1860, 1875, 1935, 1937, 1950, 2250, 2335, 2337, 2342, 2417, 2917
Offset: 1

Views

Author

Clark Kimberling, Jul 04 2011

Keywords

Crossrefs

Cf. A192476.

Programs

  • Mathematica
    start = {1}; f[x_, y_] := 2 x*y + Floor[x*y/2]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          6000 &]];
    t = FixedPoint[b, start] (* A192539 *)

A192581 Monotonic ordering of set S generated by these rules: if x and y are in S and xy+1 is a prime, then xy+1 is in S, and 2 and 4 are in S.

Original entry on oeis.org

2, 4, 5, 11, 17, 23, 47
Offset: 1

Views

Author

Clark Kimberling, Jul 04 2011

Keywords

Comments

See the discussion at A192580. As sets, A192580 lies in A192581, which lies in A192582.

Crossrefs

Programs

  • Mathematica
    start = {2, 4}; primes = Table[Prime[n], {n, 1, 10000}];
    f[x_, y_] := If[MemberQ[primes, x*y + 1], x*y + 1]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
          50000 &]];
    t = FixedPoint[b, start]  (* A192581 *)

A192585 Monotonic ordering of set S generated by these rules: if x and y are in S and xy+1 is a prime, then xy+1 is in S, and 2, 5, 8, 11, and 14 are in S.

Original entry on oeis.org

2, 5, 8, 11, 14, 17, 23, 29, 41, 47, 59, 71, 83, 89, 113, 137, 167, 179, 197, 227, 233, 239, 359, 467, 479, 569, 659, 719, 827, 1097, 1163, 1319, 1433, 1439, 1583, 1913, 2339, 2879, 3167, 3347, 3833, 4679, 5273, 9227, 10067, 11579, 15359, 18713, 20063
Offset: 1

Views

Author

Clark Kimberling, Jul 05 2011

Keywords

Comments

Last term is a(70) = 15785183. - Giovanni Resta, Mar 21 2013

Crossrefs

Programs

  • Mathematica
    start = {2, 5, 8, 11, 14}; seq = {}; new = start; While[new != {}, seq = Union[seq, new]; fresh = new; new = {}; Do[If[PrimeQ[u = x*y + 1], If[! MemberQ[seq, u], AppendTo[new, u]]], {x, seq}, {y, fresh}]]; seq (* Giovanni Resta, Mar 21 2013 *)

A192594 Monotonic ordering of set S generated by these rules: if x and y are in S and 5x+2y is a prime, then 5x+2y is in S, and 1 is in S.

Original entry on oeis.org

1, 7, 19, 37, 43, 73, 79, 97, 109, 151, 163, 181, 193, 199, 223, 229, 241, 271, 307, 313, 331, 337, 367, 373, 379, 397, 409, 421, 433, 439, 457, 463, 487, 499, 523, 541, 547, 571, 577, 601, 613, 619, 631, 643, 661, 673, 691, 709, 727, 739, 751, 757, 769
Offset: 1

Views

Author

Clark Kimberling, Jul 05 2011

Keywords

Comments

See the discussions at A192476 and A192580.

Crossrefs

Programs

  • Mathematica
    start = {1}; primes = Table[Prime[n], {n, 1, 1000}];
    f[x_, y_] := If[MemberQ[primes, 5 x + 2 y], 5 x + 2 y]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1,
             Length[w]}]]]], # < 2000 &]];
    t = FixedPoint[b, start]    (* A192594 *)
    PrimePi[t]    (* A192595 *)

A192596 Monotonic ordering of set S generated by these rules: if x and y are in S and 3x+4y is a prime, then 3x+4y is in S, and 1 is in S.

Original entry on oeis.org

1, 7, 31, 97, 127, 409, 601, 769, 1231, 1657, 1831, 2017, 2311, 3079, 3169, 3457, 3631, 3697, 3943, 4201, 4999, 5479, 5521, 5881, 6079, 6151, 6607, 6961, 7057, 7129, 7321, 7417, 7687, 8089, 8161, 8431, 9127, 9241, 9337, 9511, 9631, 9871, 10009
Offset: 1

Views

Author

Clark Kimberling, Jul 05 2011

Keywords

Comments

See the discussions at A192476 and A192580.

Crossrefs

Programs

  • Mathematica
    start = {1}; primes = Table[Prime[n], {n, 1, 10000}];
    f[x_, y_] := If[MemberQ[primes, 3 x + 4 y], 3 x + 4 y]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1,
             Length[w]}]]]], # < 20000 &]];
    t = FixedPoint[b, start]    (* A192596 *)
    PrimePi[t]   (* A192597 *)

A192597 Index-list of the primes generated at A192596.

Original entry on oeis.org

0, 4, 11, 25, 31, 80, 110, 136, 202, 260, 282, 306, 344, 440, 449, 483, 508, 516, 547, 575, 669, 724, 730, 775, 793, 802, 854, 894, 907, 914, 933, 941, 975, 1017, 1024, 1055, 1131, 1146, 1155, 1178, 1190, 1218, 1231, 1266, 1274, 1338, 1348, 1392, 1420
Offset: 1

Views

Author

Clark Kimberling, Jul 05 2011

Keywords

Examples

			From A192596=(1,7,31,97,127,...), the initial 1 is represented in A192597 by 0, followed by 4 since p(4)=7, followed by 11 since p(11)=31, etc.
		

Crossrefs

Programs

A192614 Monotonic ordering of set S generated by these rules: if x and y are in S and 2x+y^2 is a prime, then 2x+y^2 is in S, and 1 is in S.

Original entry on oeis.org

1, 3, 7, 11, 23, 31, 47, 71, 103, 127, 151, 167, 191, 263, 311, 383, 431, 503, 631, 647, 743, 863, 887, 911, 967, 983, 1103, 1151, 1303, 1487, 1583, 1607, 1783, 1823, 1831, 1847, 1871, 2087, 2207, 2311, 2351, 2423, 2447, 2543, 2591, 2687, 2927, 3023
Offset: 1

Views

Author

Clark Kimberling, Jul 05 2011

Keywords

Comments

See the discussions at A192476 and A192580.

Crossrefs

Programs

  • Mathematica
    start = {1}; primes = Table[Prime[n], {n, 1, 1000}];
    f[x_, y_] := If[MemberQ[primes, 2 x + y^2], 2 x + y^2]
    b[x_] :=
      Block[{w = x},
       Select[Union[
         Flatten[AppendTo[w,
           Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1,
             Length[w]}]]]], # < 4000 &]];
    t = FixedPoint[b, start]  (* A192614 *)
    PrimePi[t]   (* A192615 *)
Previous Showing 31-40 of 48 results. Next