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-10 of 12 results. Next

A184924 n+[sn/r]+[tn/r]+[un/r], where []=floor and r=1, s=sqrt(3), t=sqrt(5), u=sqrt(7).

Original entry on oeis.org

6, 14, 21, 28, 37, 44, 52, 59, 67, 75, 83, 89, 98, 106, 112, 120, 128, 136, 143, 150, 158, 167, 173, 181, 189, 197, 204, 212, 219, 227, 235, 242, 250, 257, 265, 273, 280, 287, 296, 303, 311, 318, 326, 334, 341, 348, 357, 364, 371, 379, 387, 395, 402, 409, 417, 425, 432, 440, 448, 455, 463, 471, 478, 486, 493, 501, 509, 516, 524, 532, 538, 546, 555, 562, 569, 577, 585, 593, 600, 607, 616, 623, 630, 638, 646, 653, 661, 668, 677, 684, 691, 699, 707, 714, 722, 729, 737, 745, 752, 760, 767, 775, 783, 791, 797, 806, 814, 821, 828, 836, 844, 851, 858, 866, 875, 881, 889, 897, 905, 912
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184924-A184927 partition the positive integers:
A184924: 6,14,21,28,37,44,52,59,...
A184925: 3,8,11,17,20,25,30,34,...
A184926: 2,5,9,12,15,19,23,26,29,...
A184927: 1,4,7,10,13,16,18,22,24,...
Jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u},
where h>=1, i>=1, j>=1, k>=1. The position of n*r in the joint ranking is n+[sn/r]+[tn/r]+[un/r], and likewise for the positions of n*s, n*t, and n*u.

Crossrefs

Programs

  • Mathematica
    r=1; s=3^(1/2); t=5^(1/2); u=7^(1/2);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184924 *)
    Table[b[n],{n,1,120}]  (* A184925 *)
    Table[c[n],{n,1,120}]  (* A184926 *)
    Table[d[n],{n,1,120}]  (* A184927 *)

A184916 n+[sn/r]+[tn/r]+[un/r], where []=floor and r=1, s=2^(1/4), t=s^2, u=s^3.

Original entry on oeis.org

4, 9, 15, 19, 25, 31, 35, 41, 46, 51, 57, 62, 67, 72, 78, 83, 89, 94, 98, 104, 109, 115, 120, 125, 131, 135, 142, 147, 152, 157, 162, 168, 173, 179, 183, 188, 195, 199, 205, 210, 214, 220, 226, 231, 236, 242, 247, 252, 258, 263, 268, 273, 279, 284, 289, 295, 299, 305, 311, 315, 321, 326, 331, 337, 342, 347, 352, 358, 364, 368, 374, 379, 384, 390, 396, 400, 405, 411, 415, 422, 427, 431, 437, 442, 448, 453, 459, 463, 468, 475, 480, 485, 490, 495, 500, 506, 512, 516, 522, 527, 532, 538, 543, 548, 553, 559, 564, 569, 575, 579, 585, 591, 596, 601, 606, 612, 617, 622, 628, 632
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184916-A184919 partition the positive integers:
A184916: 4,9,15,19,25,31,35,41,...
A184917: 3,7,12,16,21,26,29,34,...
A184918: 2,6,10,13,17,22,24,28,...
A184919: 1,5,8,11,14,18,20,23,27,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*r in the joint ranking is
n+[sn/r]+[tn/r]+[un/r], and likewise for the
positions of n*s, n*t, and n*u.

Crossrefs

Programs

  • Mathematica
    r=1; s=2^(1/4); t=2^(1/2); u=2^(3/4);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184916 *)
    Table[b[n],{n,1,120}]  (* A184917 *)
    Table[c[n],{n,1,120}]  (* A184918 *)
    Table[d[n],{n,1,120}]  (* A184919 *)

Formula

a(n)=n+[sn/r]+[tn/r]+[un/r], where []=floor and
r=1, s=2^(1/4), t=s^2, u=s^3.

A184920 a(n) = n+[s*n/r]+[t*n/r]+[u*n/r], where []=floor and r=2^(1/2), s=r+1, t=r+2, u=r+3.

Original entry on oeis.org

7, 15, 24, 31, 40, 48, 55, 64, 73, 82, 89, 97, 106, 113, 122, 130, 140, 147, 155, 164, 171, 180, 188, 195, 205, 213, 222, 229, 238, 246, 253, 262, 271, 280, 287, 295, 304, 311, 320, 328, 335, 345, 353, 362, 369, 378, 386, 393, 402, 411, 420, 427, 435, 444, 451, 460, 468, 478, 485, 493, 502, 509, 518, 526, 533, 543, 551, 560, 567, 575, 584, 591, 600, 608, 618, 625, 633, 642, 649, 658, 666, 673, 683, 691, 700, 707, 716, 724, 731, 740, 749, 758, 765, 773, 782, 789, 798, 806, 816, 823, 831, 840, 847, 856, 864, 871, 880, 889, 898, 905, 913, 922, 929, 938, 946, 956, 963, 971, 980, 987
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184920-A184923 partition the positive integers:
A184920: 7,15,24,31,40,48,55,64,...
A184921: 3,8,13,18,23,27,32,37,...
A184922: 2,5,9,12,16,19,22,26,29,...
A184923: 1,4,6,10,11,14,17,20,21,...
Jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, where h>=1, i>=1, j>=1, k>=1.
The position of n*r in the joint ranking is n+[s*n/r]+[t*n/r]+[u*n/r], and likewise for the positions of n*s, n*t, and n*u.

Crossrefs

Programs

  • Mathematica
    r=2^(1/2); s=r+1; t=r+2; u=r+3;
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184920 *)
    Table[b[n],{n,1,120}]  (* A184921 *)
    Table[c[n],{n,1,120}]  (* A184922 *)
    Table[d[n],{n,1,120}]  (* A184923 *)

A184915 n+[rn/u]+[sn/u]+[tn/u], where []=floor and r=2^(1/5), s=r^2, t=r^3, u=r^4.

Original entry on oeis.org

1, 5, 8, 12, 15, 18, 22, 25, 27, 31, 35, 38, 41, 45, 48, 51, 54, 57, 61, 65, 67, 71, 75, 77, 80, 84, 87, 91, 94, 97, 100, 104, 107, 110, 114, 117, 121, 124, 126, 130, 134, 136, 140, 144, 147, 150, 153, 156, 160, 162, 166, 170, 173, 176, 179, 182, 186, 189, 192, 196, 200, 201, 205, 209, 212, 216, 219, 222, 226, 229, 231, 235, 239, 242, 245, 249, 252, 255, 258, 261, 265, 269, 271, 275, 278, 281, 284, 288, 291, 295, 298, 301, 304, 308, 310, 314, 317, 321, 325, 327, 330, 334, 337, 340, 344, 347, 351, 354, 356, 360, 364, 366, 370, 374, 377, 379, 383, 386, 390, 393
Offset: 1

Views

Author

Clark Kimberling, Jan 25 2011

Keywords

Comments

The sequences A184912-A184915 partition the positive integers:
A184912: 4,9,13,19,23,28,34,...
A184913: 3,7,11,16,20,24,30,...
A184914: 2,6,10,14,17,21,26,...
A184915: 1,5,8,12,15,18,22,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*u in the joint ranking is
n+[rn/u]+[sn/u]+[tn/u], and likewise for the
positions of n*r, n*s, and n*t.

Crossrefs

Programs

  • Mathematica
    r=2^(1/5); s=2^(2/5); t=2^(3/5); u=2^(4/5);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184912 *)
    Table[b[n],{n,1,120}]  (* A184913 *)
    Table[c[n],{n,1,120}]  (* A184914 *)
    Table[d[n],{n,1,120}]  (* A184915 *)

A184913 n+[rn/s]+[tn/s]+[un/s], where []=floor and r=2^(1/5), s=r^2, t=r^3, u=r^4.

Original entry on oeis.org

3, 7, 11, 16, 20, 24, 30, 33, 37, 42, 46, 50, 55, 60, 64, 68, 72, 76, 81, 85, 90, 95, 99, 102, 106, 111, 116, 120, 125, 129, 132, 137, 141, 146, 151, 155, 159, 164, 167, 171, 177, 181, 185, 190, 194, 198, 202, 207, 211, 215, 220, 224, 228, 234, 237, 241, 246, 250, 254, 259, 264, 267, 272, 276, 280, 285, 289, 294, 299, 302, 306, 311, 315, 320, 324, 329, 333, 336, 341, 345, 350, 355, 359, 363, 367, 371, 375, 381, 385, 389, 394, 398, 401, 406, 411, 415, 419, 424, 428, 432, 437, 441, 445, 450, 454, 458, 463, 468, 471, 476, 480, 484, 489, 493, 498, 502, 506, 510, 515, 519
Offset: 1

Views

Author

Clark Kimberling, Jan 25 2011

Keywords

Comments

The sequences A184912-A184915 partition the positive integers:
A184912: 4,9,13,19,23,28,34,...
A184913: 3,7,11,16,20,24,30,...
A184914: 2,6,10,14,17,21,26,...
A184915: 1,5,8,12,15,18,22,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*s in the joint ranking is
n+[rn/s]+[tn/s]+[un/s], and likewise for the
positions of n*r, n*t, and n*u.

Crossrefs

Programs

  • Mathematica
    r=2^(1/5); s=2^(2/5); t=2^(3/5); u=2^(4/5);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184912 *)
    Table[b[n],{n,1,120}]  (* A184913 *)
    Table[c[n],{n,1,120}]  (* A184914 *)
    Table[d[n],{n,1,120}]  (* A184915 *)

A184914 n+[rn/t]+[sn/t]+[un/t], where []=floor and r=2^(1/5), s=r^2, t=r^3, u=r^4.

Original entry on oeis.org

2, 6, 10, 14, 17, 21, 26, 29, 32, 36, 40, 44, 47, 52, 56, 59, 62, 66, 70, 74, 78, 82, 86, 89, 92, 96, 101, 105, 108, 112, 115, 119, 123, 127, 131, 135, 139, 142, 145, 149, 154, 157, 161, 165, 169, 172, 175, 180, 184, 187, 191, 195, 199, 203, 206, 210, 214, 217, 221, 225, 230, 232, 236, 240, 244, 248, 251, 256, 260, 263, 266, 270, 274, 279, 282, 286, 290, 293, 296, 300, 305, 309, 312, 316, 319, 323, 326, 331, 335, 339, 342, 346, 349, 353, 357, 361, 365, 369, 373, 376, 380, 384, 388, 391, 395, 399, 403, 407, 410, 414, 418, 421, 425, 429, 434, 436, 440, 444, 448, 451
Offset: 1

Views

Author

Clark Kimberling, Jan 25 2011

Keywords

Comments

The sequences A184912-A184915 partition the positive integers:
A184912: 4,9,13,19,23,28,34,...
A184913: 3,7,11,16,20,24,30,...
A184914: 2,6,10,14,17,21,26,...
A184915: 1,5,8,12,15,18,22,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*t in the joint ranking is
n+[rn/t]+[sn/t]+[un/t], and likewise for the
positions of n*r, n*s, and n*u.

Crossrefs

Programs

  • Mathematica
    r=2^(1/5); s=2^(2/5); t=2^(3/5); u=2^(4/5);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184912 *)
    Table[b[n],{n,1,120}]  (* A184913 *)
    Table[c[n],{n,1,120}]  (* A184914 *)
    Table[d[n],{n,1,120}]  (* A184915 *)

A184917 n+[rn/s]+[tn/s]+[un/s], where []=floor and r=1, s=2^(1/4), t=s^2, u=s^3.

Original entry on oeis.org

3, 7, 12, 16, 21, 26, 29, 34, 38, 43, 48, 52, 56, 60, 65, 70, 75, 79, 82, 87, 91, 97, 101, 105, 110, 113, 119, 123, 128, 132, 136, 141, 145, 150, 154, 158, 164, 167, 172, 176, 180, 185, 190, 194, 198, 203, 207, 212, 217, 221, 225, 229, 234, 239, 243, 248, 251, 256, 261, 265, 270, 274, 278, 283, 287, 292, 296, 301, 306, 309, 314, 318, 323, 328, 333, 336, 340, 345, 349, 355, 359, 362, 367, 371, 377, 381, 386, 389, 393, 399, 403, 408, 412, 416, 420, 425, 430, 434, 439, 443, 447, 452, 456, 461, 465, 470, 474, 478, 483, 487, 492, 497, 501, 505, 509, 514, 519, 523, 528, 531
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184916-A184919 partition the positive integers:
A184916: 4,9,15,19,25,31,35,41,...
A184917: 3,7,12,16,21,26,29,34,...
A184918: 2,6,10,13,17,22,24,28,...
A184919: 1,5,8,11,14,18,20,23,27,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*s in the joint ranking is
n+[rn/s]+[tn/s]+[un/s], and likewise for the
positions of n*r, n*t, and n*u.

Crossrefs

Programs

  • Mathematica
    r=1; s=2^(1/4); t=2^(1/2); u=2^(3/4);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184916 *)
    Table[b[n],{n,1,120}]  (* A184917 *)
    Table[c[n],{n,1,120}]  (* A184918 *)
    Table[d[n],{n,1,120}]  (* A184919 *)

A184918 n+[rn/t]+[sn/t]+[un/t], where []=floor and r=1, s=2^(1/4), t=s^2, u=s^3.

Original entry on oeis.org

2, 6, 10, 13, 17, 22, 24, 28, 32, 36, 40, 44, 47, 50, 54, 59, 63, 66, 69, 73, 76, 81, 85, 88, 92, 95, 100, 103, 107, 111, 114, 118, 122, 126, 129, 133, 138, 140, 144, 148, 151, 155, 160, 163, 166, 170, 174, 178, 182, 186, 189, 192, 197, 201, 204, 208, 211, 215, 219, 223, 227, 230, 233, 238, 241, 245, 249, 253, 257, 260, 264, 267, 271, 276, 280, 282, 286, 290, 293, 298, 302, 304, 308, 312, 317, 320, 324, 327, 330, 335, 339, 343, 346, 350, 353, 357, 361, 365, 369, 372, 376, 380, 383, 387, 391, 395, 398, 402, 406, 409, 414, 418, 421, 424, 428, 432, 436, 440, 444, 446
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184916-A184919 partition the positive integers:
A184916: 4,9,15,19,25,31,35,41,...
A184917: 3,7,12,16,21,26,29,34,...
A184918: 2,6,10,13,17,22,24,28,...
A184919: 1,5,8,11,14,18,20,23,27,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*t in the joint ranking is
n+[rn/t]+[sn/t]+[un/t], and likewise for the
positions of n*r, n*s, and n*u.

Crossrefs

Programs

  • Mathematica
    r=1; s=2^(1/4); t=2^(1/2); u=2^(3/4);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184916 *)
    Table[b[n],{n,1,120}]  (* A184917 *)
    Table[c[n],{n,1,120}]  (* A184918 *)
    Table[d[n],{n,1,120}]  (* A184919 *)

A184919 n+[rn/u]+[sn/u]+[tn/u], where []=floor and r=1, s=2^(1/4), t=s^2, u=s^3.

Original entry on oeis.org

1, 5, 8, 11, 14, 18, 20, 23, 27, 30, 33, 37, 39, 42, 45, 49, 53, 55, 58, 61, 64, 68, 71, 74, 77, 80, 84, 86, 90, 93, 96, 99, 102, 106, 108, 112, 116, 117, 121, 124, 127, 130, 134, 137, 139, 143, 146, 149, 153, 156, 159, 161, 165, 169, 171, 175, 177, 181, 184, 187, 191, 193, 196, 200, 202, 206, 209, 213, 216, 218, 222, 224, 228, 232, 235, 237, 240, 244, 246, 250, 254, 255, 259, 262, 266, 269, 272, 275, 277, 281, 285, 288, 291, 294, 297, 300, 303, 307, 310, 313, 316, 319, 322, 325, 329, 332, 334, 338, 341, 344, 348, 351, 354, 356, 360, 363, 366, 370, 373, 375
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184916-A184919 partition the positive integers:
A184916: 4,9,15,19,25,31,35,41,...
A184917: 3,7,12,16,21,26,29,34,...
A184918: 2,6,10,13,17,22,24,28,...
A184919: 1,5,8,11,14,18,20,23,27,...
The joint ranking method of A184812 is extended here to four numbers r,s,t,u, as follows: jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, h>=1, i>=1, j>=1, k>=1.
The position of n*u in the joint ranking is
n+[rn/u]+[sn/u]+[tn/u], and likewise for the
positions of n*r, n*s, and n*t.

Crossrefs

Programs

  • Mathematica
     r=1; s=2^(1/4); t=2^(1/2); u=2^(3/4);
    a[n_]:=n+Floor[n*s/r]+Floor[n*t/r]+Floor[n*u/r];
    b[n_]:=n+Floor[n*r/s]+Floor[n*t/s]+Floor[n*u/s];
    c[n_]:=n+Floor[n*r/t]+Floor[n*s/t]+Floor[n*u/t];
    d[n_]:=n+Floor[n*r/u]+Floor[n*s/u]+Floor[n*t/u];
    Table[a[n],{n,1,120}]  (* A184916 *)
    Table[b[n],{n,1,120}]  (* A184917 *)
    Table[c[n],{n,1,120}]  (* A184918 *)
    Table[d[n],{n,1,120}]  (* A184919 *)
    Table[With[{s=Surd[2,4]},n+Floor[n/s^3]+Floor[(n*s)/s^3]+Floor[(n*s^2)/s^3]],{n,120}] (* Harvey P. Dale, Dec 01 2024 *)

A184921 a(n) = n+[r*n/s]+[t*n/s]+[u*n/s], where []=floor and r=2^(1/2), s=r+1, t=r+2, u=r+3.

Original entry on oeis.org

3, 8, 13, 18, 23, 27, 32, 37, 42, 47, 52, 56, 61, 66, 71, 76, 81, 85, 90, 95, 100, 105, 110, 114, 119, 124, 129, 134, 139, 143, 148, 153, 158, 163, 167, 172, 177, 182, 187, 192, 196, 201, 206, 211, 216, 221, 225, 230, 235, 240, 245, 250, 254, 259, 264, 269, 274, 279, 283, 288, 293, 298, 303, 308, 312, 317, 322, 327, 332, 336, 341, 346, 351, 356, 361, 365, 370, 375, 380, 385, 390, 394, 399, 404, 409, 414, 419, 423, 428, 433, 438, 443, 448, 452, 457, 462, 467, 472, 477, 481, 486, 491, 496, 501, 505, 510, 515, 520, 525, 530, 534, 539, 544, 549, 554, 559, 563, 568, 573, 578
Offset: 1

Views

Author

Clark Kimberling, Jan 26 2011

Keywords

Comments

The sequences A184920-A184923 partition the positive integers:
A184920: 7,15,24,31,40,48,55,64,...
A184921: 3,8,13,18,23,27,32,37,...
A184922: 2,5,9,12,16,19,22,26,29,...
A184923: 1,4,6,10,11,14,17,20,21,...
Jointly rank the sets {h*r}, {i*s}, {j*t}, {k*u}, where h>=1, i>=1, j>=1, k>=1.
The position of n*s in the joint ranking is n+[r*n/s]+[t*n/s]+[u*n/s], and likewise for the positions of n*r, n*t, and n*u.

Crossrefs

Programs

Showing 1-10 of 12 results. Next