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.

A292663 Rank of n*(e-1) when all the numbers j*(e+1) and k*e, for j>=1, k>=1, are jointly ranked.

Original entry on oeis.org

1, 3, 4, 6, 8, 9, 11, 13, 14, 16, 17, 19, 21, 22, 24, 26, 27, 29, 31, 32, 34, 35, 37, 39, 40, 42, 44, 45, 47, 48, 50, 52, 53, 55, 57, 58, 60, 62, 63, 65, 66, 68, 70, 71, 73, 75, 76, 78, 79, 81, 83, 84, 86, 88, 89, 91, 93, 94, 96, 97, 99, 101, 102, 104, 106
Offset: 1

Views

Author

Clark Kimberling, Sep 29 2017

Keywords

Comments

Starts to differ from A109259 at n=68. - R. J. Mathar, Oct 02 2017

Crossrefs

Cf. A292664 (complement).

Programs

  • Mathematica
    z = 120; r = E - 1; s = E;;
    Table[n + Floor[n*r/s], {n, 1, z}]  (* A292663 *)
    Table[n + Floor[n*s/r], {n, 1, z}]  (* A292664 *)